Hii
The soundex() function calculates the soundex key of a string.
The soundex() function can be used for spelling applications.
<?php
$str = "Assistance";
$str2 = "Assistants";
echo soundex($str);
echo "<br>";
echo soundex($str2);
?>
The metaphone() function calculates the metaphone key of a string.
The metaphone() function can be used for spelling applications.
<?php
$str = "Assistance";
$str2 = "Assistants";
echo metaphone($str);
echo "<br>";
echo metaphone($str2);
?>