ucwords code example
Example 1: ucwords in php
<?php
/* Convert the first character of each word to uppercase: */
echo ucwords("hello samy, how are you ?");
//output : Hello Samy, How Are You ?
?>
Example 2: php uppercase each word
$upperCaseSentance=ucwords("i do not feel good");//I Do Not Feel Good