Lines Matching refs:soundex
2 Test soundex() function : error conditions
5 /* Prototype : string soundex ( string $str )
6 * Description: Calculate the soundex key of a string
10 echo "\n*** Testing soundex error conditions ***";
12 echo "-- Testing soundex() function with Zero arguments --\n";
13 var_dump( soundex() );
15 echo "\n\n-- Testing soundex() function with more than expected no. of arguments --\n";
18 var_dump( soundex( $str, $extra_arg) );
23 *** Testing soundex error conditions ***-- Testing soundex() function with Zero arguments --
25 Warning: soundex() expects exactly 1 parameter, 0 given in %s on line %d
29 -- Testing soundex() function with more than expected no. of arguments --
31 Warning: soundex() expects exactly 1 parameter, 2 given in %s on line %d