Lines Matching refs:strtoupper
2 Test strtoupper() function
13 echo "*** Testing strtoupper() with all 256 chars ***\n";
16 print(bin2hex($char))." => ".(bin2hex(strtoupper("$char")))."\n";
19 echo "\n*** Testing strtoupper() with basic strings ***\n";
21 var_dump(strtoupper($str));
23 echo "\n*** Testing strtoupper() with various strings ***";
24 /* strings to pass strtoupper() */
41 var_dump( strtoupper($string) );
45 echo "\n*** Testing strtoupper() with two different case strings ***\n";
46 if (strtoupper("HeLLo woRLd") === strtoupper("hEllo WORLD"))
54 *** Testing strtoupper() with all 256 chars ***
312 *** Testing strtoupper() with basic strings ***
316 *** Testing strtoupper() with various strings ***
344 *** Testing strtoupper() with two different case strings ***