PHP.nl

similar_text

similar_text

Calculate the similarity between two strings

int **similar_text** string $string1 string $string2 float $percent

This calculates the similarity between two strings as described in book.programming.classics. 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.

string1The first string.

string2The second string.

Opmerking: > Swapping the and may yield a different result; see the example below. string1``string2

percent By passing a reference as third argument, will calculate the similarity in percent, by dividing the result of by the average of the lengths of the given strings times . similar_text``similar_text``100

Returns the number of matching chars in both strings.

The number of matching characters is calculated by finding the longest first common substring, and then doing this for the prefixes and the suffixes, recursively. The lengths of all found common substrings are added.

Voorbeeld: argument swapping example

This example shows that swapping the  and
 argument may yield different results.

string1``string2

<?php
$sim = similar_text('bafoobar', 'barfoo', $perc);
echo "similarity: $sim ($perc %)\n";
$sim = similar_text('barfoo', 'bafoobar', $perc);
echo "similarity: $sim ($perc %)\n";
similarity: 5 (71.428571428571 %)
similarity: 3 (42.857142857143 %)

levenshtein``metaphone``soundex