Searched refs:soundex (Results 1 – 17 of 17) sorted by relevance
/PHP-5.4/ext/standard/tests/strings/ |
H A D | soundex_basic.phpt | 11 var_dump(soundex("Euler")); 14 var_dump(soundex("Knuth")); 15 var_dump(soundex("Lloyd")); 18 var_dump(soundex("Euler") == soundex("Ellery")); // E460 19 var_dump(soundex("Gauss") == soundex("Ghosh")); // G200 20 var_dump(soundex("Hilbert") == soundex("Heilbronn")); // H416 21 var_dump(soundex("Knuth") == soundex("Kant")); // K530 22 var_dump(soundex("Lloyd") == soundex("Ladd")); // L300 23 var_dump(soundex("Lukasiewicz") == soundex("Lissajous")); // L222 25 var_dump(soundex("Lukasiewicz") == soundex("Ghosh")); [all …]
|
H A D | soundex_error.phpt | 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() ); 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 -- [all …]
|
H A D | soundex.phpt | 2 soundex() tests 6 var_dump(soundex("")); 7 var_dump(soundex(-1)); 8 var_dump(soundex(array())); 29 var_dump(soundex($str)); 38 Warning: soundex() expects parameter 1 to be string, array given in %s on line %d
|
H A D | str_rot13_basic.phpt | 2 Test soundex() function : basic functionality
|
/PHP-5.4/ext/standard/ |
H A D | soundex.c | 29 PHP_FUNCTION(soundex) in PHP_FUNCTION() argument 33 char soundex[4 + 1]; in PHP_FUNCTION() local 81 soundex[_small++] = code; in PHP_FUNCTION() 91 soundex[_small++] = code; in PHP_FUNCTION() 100 soundex[_small++] = '0'; in PHP_FUNCTION() 102 soundex[_small] = '\0'; in PHP_FUNCTION() 104 RETURN_STRINGL(soundex, _small, 1); in PHP_FUNCTION()
|
H A D | config.w32 | 17 pack.c pageinfo.c quot_print.c rand.c soundex.c \
|
H A D | php_string.h | 34 PHP_FUNCTION(soundex);
|
H A D | config.m4 | 600 soundex.c string.c scanf.c syslog.c type.c uniqid.c url.c \
|
H A D | basic_functions.c | 2797 PHP_FE(soundex, arginfo_soundex)
|
/PHP-5.4/ext/mysqli/tests/ |
H A D | bug55859.phpt | 15 var_dump(soundex(mysqli_stat($link)) === soundex($link->stat));
|
H A D | mysqli_class_mysqli_interface.phpt | 214 assert(soundex(mysqli_stat($link)) == soundex($mysqli->stat));
|
/PHP-5.4/ext/mysql/tests/ |
H A D | mysql_stat.phpt | 37 assert(soundex($stat) === soundex($stat_def));
|
/PHP-5.4/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_attr_server_info.phpt | 26 if (soundex($new_info) != soundex($info))
|
/PHP-5.4/ |
H A D | .gitattributes | 81 /ext/standard/tests/strings/soundex.phpt -crlf
|
/PHP-5.4/win32/ |
H A D | php5dll.dsp | 538 SOURCE=..\ext\standard\soundex.c
|
H A D | php5dllts.dsp | 1968 SOURCE=..\ext\standard\soundex.c
|
/PHP-5.4/ext/sqlite3/libsqlite/ |
H A D | sqlite3.c | 98186 FUNCTION(soundex, 1, 0, 0, soundexFunc ),
|
Completed in 423 milliseconds