summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/strtr.phpt
blob: 7d9bd31d14e16246dc2482f45e25f503863aa557 (plain)
1
2
3
4
5
6
7
8
9
10
--TEST--
strtr() function
--FILE--
<?php
/* Do not change this test it is a REATME.TESTING example. */
$trans = array("hello"=>"hi", "hi"=>"hello", "a"=>"A", "world"=>"planet");
var_dump(strtr("# hi all, I said hello world! #", $trans));
?>
--EXPECT--
string(32) "# hello All, I sAid hi planet! #"