summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/strtr.phpt
blob: 2cab3a4317213ab69664f55ce3a78cd0591dae1e (plain)
1
2
3
4
5
6
7
8
9
10
11
--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! #