Lines Matching refs:from
2 Test strtr() function : usage variations - unexpected inputs for 'from' argument
5 /* Test strtr() function: with unexpected inputs for 'from'
9 echo "*** Testing strtr() function: with unexpected inputs for 'from' ***\n";
28 // array of values for 'from'
72 // loop through with each element of the $from array to test strtr() function
76 $from = $from_arr[$index];
78 var_dump(strtr($str, $from, $to));
88 *** Testing strtr() function: with unexpected inputs for 'from' ***
102 strtr(): Argument #2 ($from) must be of type string, array given
104 strtr(): Argument #2 ($from) must be of type string, array given
106 strtr(): Argument #2 ($from) must be of type string, array given
122 strtr(): Argument #2 ($from) must be of type array|string, resource given