php captial case code example
Example 1: php capitalize first letter
ucfirst("hello world!");
Example 2: php function to convert string to camelcase
echo ucwords("hello world");
ucfirst("hello world!");
echo ucwords("hello world");