October 2005
Intermediate to advanced
372 pages
11h 35m
English
strtoupper()
string strtoupper ( string str )The strtoupper() function takes one string parameter and returns that string entirely in uppercase characters.
$string = "I like to program in PHP";
$a = strtoupper($string);In that example, $a will be set to "I LIKE TO PROGRAM IN PHP".