Lines Matching refs:strtoupper
2 Test strtoupper() function
5 echo "*** Testing strtoupper() with 256 chars ***\n";
8 print(bin2hex($char))." => ".(bin2hex(strtoupper("$char")))."\n";
11 echo "\n*** Testing strtoupper() with basic strings ***\n";
13 var_dump(strtoupper($str));
15 echo "\n*** Testing strtoupper() with various strings ***";
16 /* strings to pass strtoupper() */
43 var_dump( strtoupper($string) );
47 echo "\n*** Testing strtoupper() with two different case strings ***\n";
48 if (strtoupper("HeLLo woRLd") === strtoupper("hEllo WORLD"))
56 *** Testing strtoupper() with 256 chars ***
314 *** Testing strtoupper() with basic strings ***
318 *** Testing strtoupper() with various strings ***
370 *** Testing strtoupper() with two different case strings ***