1
0
mirror of https://github.com/php/php-src.git synced 2026-04-30 03:33:17 +02:00
Files
archived-php-src/ext/standard/tests/strings/soundex.phpt
T
2019-03-11 11:32:20 +01:00

52 lines
726 B
PHP

--TEST--
soundex() tests
--FILE--
<?php
var_dump(soundex(""));
var_dump(soundex(-1));
$array = array(
"From",
"that",
"time",
"on",
"Sam",
"thought",
"that",
"he",
"sensed",
"a",
"change",
"in",
"Gollum",
"again.",
"He was more fawning and would-be friendly; but Sam surprised some strange looks in his eyes at times, especially towards Frodo."
);
foreach ($array as $str) {
var_dump(soundex($str));
}
echo "Done\n";
?>
--EXPECTF--
bool(false)
string(4) "0000"
string(4) "F650"
string(4) "T300"
string(4) "T500"
string(4) "O500"
string(4) "S500"
string(4) "T230"
string(4) "T300"
string(4) "H000"
string(4) "S523"
string(4) "A000"
string(4) "C520"
string(4) "I500"
string(4) "G450"
string(4) "A250"
string(4) "H256"
Done