The soundex algorithm is implemented in PHP through the soundex function : soundex « String « PHP






The soundex algorithm is implemented in PHP through the soundex function

 
<?php
    echo soundex ('see');
    echo "\n";
?>
  
  








Related examples in the same category

1.Comparing Sound
2.Comparing Sound: string soundex ( string str )