string to pascal case php code example
Example 1: php uppercase each word
$upperCaseSentance=ucwords("i do not feel good");//I Do Not Feel Good
Example 2: php function to convert string to camelcase
echo ucwords("hello world");
$upperCaseSentance=ucwords("i do not feel good");//I Do Not Feel Good
echo ucwords("hello world");