Mega Code Archive

 
Categories / Php / Strings
 

Ucwords() makes the first letter of every word in a string uppercase

<?php $full_name = "this is a test"; $full_name = ucwords ( $full_name ); print $full_name;  ?>