Lines Matching refs:strtolower
2 Test strtolower() function
12 echo "*** Testing strtolower() with all 256 chars ***\n";
15 print(bin2hex($char))." => ".(bin2hex(strtolower("$char")))."\n";
20 var_dump(strtolower($str));
22 echo "\n*** Testing strtolower() with various strings ***";
23 /* strings to pass strtolower() */
39 var_dump( strtolower($string) );
43 echo "\n*** Testing strtolower() with two different case strings ***\n";
44 if (strtolower("HeLLo woRLd") === strtolower("hEllo WORLD"))
52 *** Testing strtolower() with all 256 chars ***
313 *** Testing strtolower() with various strings ***
338 *** Testing strtolower() with two different case strings ***