levenshtein() - string
The Levenshtein distance is defined as the minimal number of
characters you have to replace, insert or delete to transform
str1 into str2.
The complexity of the algorithm is O(m*n),
where n and m are the
length of str1 and
str2 (rather good when compared to
similar_text(), which is O(max(n,m)**3),
but still expensive).
Parameters :
str1 - One of the strings being evaluated for Levenshtein distance. str2 - One of the strings being evaluated for Levenshtein distance. cost_ins - Defines the cost of insertion. cost_rep - Defines the cost of replacement. cost_del - Defines the cost of deletion.
Syntax
int levenshtein
( string $str1
, string $str2
)
Example
Output / Return Value
Limitations
Alternatives / See Also
Reference