Query: similar_text
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
SIMILAR_TEXT(3) 1 SIMILAR_TEXT(3) similar_text - Calculate the similarity between two stringsSYNOPSISint similar_text (string $first, string $second, [float &$percent])DESCRIPTIONThis calculates the similarity between two strings as described in Programming Classics: Implementing the World's Best Algorithms by Oliver (ISBN 0-131-00413-1). Note that this implementation does not use a stack as in Oliver's pseudo code, but recursive calls which may or may not speed up the whole process. Note also that the complexity of this algorithm is O(N**3) where N is the length of the longest string.PARAMETERSo $first - The first string. o $second - The second string. o $percent - By passing a reference as third argument, similar_text(3) will calculate the similarity in percent for you.RETURN VALUESReturns the number of matching chars in both strings.SEE ALSOlevenshtein(3), soundex(3). PHP Documentation Group SIMILAR_TEXT(3)