Mega Code Archive

 
Categories / Php / Strings
 

String ucwords ( string str ) converts the first letter of each word in the string to an uppercase character, leaving the others un

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