PHP/String/soundex

Материал из Web эксперт
Перейти к: навигация, поиск

Comparing Sound

   <source lang="html4strict">

<?php

 echo soundex ("babin") . "
"; echo soundex ("bahbeen") . "
";

?>

 </source>
   
  


Comparing Sound: string soundex ( string str )

   <source lang="html4strict">

<?php echo soundex ("Apress") . "
"; ?>

 </source>
   
  


The soundex algorithm is implemented in PHP through the soundex function

   <source lang="html4strict">

<?php

   echo soundex ("see");
   echo "\n";

?>

 </source>