ucfirst all words php code example
Example 1: php uppercase each word
$upperCaseSentance=ucwords("i do not feel good");//I Do Not Feel Good
Example 2: php capitalize first letter
ucfirst("hello world!");
$upperCaseSentance=ucwords("i do not feel good");//I Do Not Feel Good
ucfirst("hello world!");