Lines Matching refs:strtolower
2 Test strtolower() function
18 string strtolower ( string $str );
28 echo "*** Testing strtolower() with 128 chars ***\n";
31 print(bin2hex($char))." => ".(bin2hex(strtolower("$char")))."\n";
36 var_dump(strtolower($str));
38 echo "\n*** Testing strtolower() with various strings ***";
39 /* strings to pass strtolower() */
57 var_dump( strtolower($string) );
61 echo "\n*** Testing strtolower() with two different case strings ***\n";
62 if (strtolower("HeLLo woRLd") === strtolower("hEllo WORLD"))
68 var_dump( strtolower() ); /* Zero arguments */
69 var_dump( strtolower("a", "b") ); /* Arguments > Expected */
74 *** Testing strtolower() with 128 chars ***
207 *** Testing strtolower() with various strings ***
237 Warning: strtolower() expects parameter 1 to be string, array given in %s on line %d
240 *** Testing strtolower() with two different case strings ***
244 Warning: strtolower() expects exactly 1 parameter, 0 given in %s on line %d
247 Warning: strtolower() expects exactly 1 parameter, 2 given in %s on line %d