Lines Matching refs:strtr
2 Test strtr() function : usage variations - string containing escape sequences for 'str' argument
5 /* Testing strtr() function by passing the
10 echo "*** Testing strtr() : string containing escape sequences for 'str' arg ***\n";
16 \\test\\\strtr
26 "\\test\\\strtr",
33 '\\test\\\strtr',
46 /* loop through to test strtr() with each element of $str_arr */
52 //strtr() call in three args syntax form
53 var_dump( strtr($str, $from, $to) );
55 //strtr() call in two args syntax form
56 var_dump( strtr($str, $replace_pairs) );
63 *** Testing strtr() : string containing escape sequences for 'str' arg ***
70 string(12) "\test\\strtr"
85 string(12) "\test\\strtr"