summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/strtr.phpt
blob: 77666ced8c491f137137b98c4e6d4792f2e6668a (plain)
1
2
3
4
5
6
7
8
9
10
--TEST--
strtr() function
--FILE--
<?php
/* Do not change this test it is a README.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! #"