This function ucwords capitalizes first alphabet of every word in a String and returns it. This is useful for converting or renaming files or directories..
usage:
$string = “name sake”;
$stringresult = ucwords($string);
the result will be
Name Sake
This function ucwords capitalizes first alphabet of every word in a String and returns it. This is useful for converting or renaming files or directories..
usage:
$string = “name sake”;
$stringresult = ucwords($string);
the result will be
Name Sake