HomeMenu
Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

similar_text

Description

The similar_text of String for PHP calculate the similarity between two strings.

Syntax

similar_text ( string $first , string $second [, float &$percent ] ) : int

Parameters

first

The first string.

second

The second string.

Note: Swapping the first and second may yield a different result.

percent

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

Return

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.

Examples

1 · first second

<?

$first = 'same';
$second = 'different';

$return = similar_text($first, $second);

echo $return;
1

2 · percent

<?

$first = 'same';
$second = 'different';

$return = similar_text($first, $second, $percent);

echo $percent;
15.384615384615

3 · Swap

<?

$first = 'sometest';
$second = 'sotestsome';

$return1 = similar_text($first, $second, $percent1);
$return2 = similar_text($second, $first, $percent2);

echo "$return1 $percent1\n";
echo "$return2 $percent2";
4 44.444444444444
6 66.666666666667