php-src/ext/standard/tests/strings/strtr.phpt

12 lines
248 B
Plaintext
Raw Normal View History

--TEST--
strtr() function
--POST--
--GET--
--FILE--
<?php
$trans = array("hello" => "hi", "hi" => "hello","a" => "A","world" => "planet");
echo strtr("# hi all, I said hello world! #", $trans) . "\n";
?>
--EXPECT--
# hello All, I sAid hi planet! #