PHP/String/soundex
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";
?>