summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/strtr.phpt
blob: 80ed722b8e4c323fca0b0812c498147f2cde37d6 (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! #"