Lines Matching refs:strtoupper
2 Test strtoupper() function
23 echo "*** Testing strtoupper() with 128 chars ***\n";
26 print(bin2hex($char))." => ".(bin2hex(strtoupper("$char")))."\n";
29 echo "\n*** Testing strtoupper() with basic strings ***\n";
31 var_dump(strtoupper($str));
33 echo "\n*** Testing strtoupper() with various strings ***";
34 /* strings to pass strtoupper() */
51 var_dump( strtoupper($string) );
55 echo "\n*** Testing strtoupper() with two different case strings ***\n";
56 if (strtoupper("HeLLo woRLd") === strtoupper("hEllo WORLD"))
64 *** Testing strtoupper() with 128 chars ***
194 *** Testing strtoupper() with basic strings ***
198 *** Testing strtoupper() with various strings ***
226 *** Testing strtoupper() with two different case strings ***