Lines Matching refs:strtolower
2 Test strtolower() function
6 echo "*** Testing strtolower() with 256 chars ***\n";
9 print(bin2hex($char))." => ".(bin2hex(strtolower("$char")))."\n";
14 var_dump(strtolower($str));
16 echo "\n*** Testing strtolower() with various strings ***";
17 /* strings to pass strtolower() */
40 var_dump( strtolower($string) );
44 echo "\n*** Testing strtolower() with two different case strings ***\n";
45 if (strtolower("HeLLo woRLd") === strtolower("hEllo WORLD"))
53 *** Testing strtolower() with 256 chars ***
314 *** Testing strtolower() with various strings ***
354 *** Testing strtolower() with two different case strings ***