Mega Code Archive

 
Categories / Php / Strings
 

String strtoupper ( string str ) returns that string entirely in uppercase characters

<?     $string = "I like to program in PHP";     $a = strtoupper($string); ?>