PHP/String/soundex
Версия от 10:37, 26 мая 2010; (обсуждение)
Comparing Sound
<?php
echo soundex ("babin") . "<br />";
echo soundex ("bahbeen") . "<br />";
?>
Comparing Sound: string soundex ( string str )
<?php
echo soundex ("Apress") . "<br />";
?>
The soundex algorithm is implemented in PHP through the soundex function
<?php
echo soundex ("see");
echo "\n";
?>