Lines Matching refs:strtolower
2 Test strtolower() function
23 echo "*** Testing strtolower() with 128 chars ***\n";
26 print(bin2hex($char))." => ".(bin2hex(strtolower("$char")))."\n";
31 var_dump(strtolower($str));
33 echo "\n*** Testing strtolower() with various strings ***";
34 /* strings to pass strtolower() */
50 var_dump( strtolower($string) );
54 echo "\n*** Testing strtolower() with two different case strings ***\n";
55 if (strtolower("HeLLo woRLd") === strtolower("hEllo WORLD"))
63 *** Testing strtolower() with 128 chars ***
196 *** Testing strtolower() with various strings ***
221 *** Testing strtolower() with two different case strings ***