Answers for "string to camlecase php"

PHP
6

php uppercase each word

$upperCaseSentance=ucwords("i do not feel good");//I Do Not Feel Good
Posted by: Guest on July-30-2019
2

php function to convert string to camelcase

echo ucwords("hello world");
Posted by: Guest on May-15-2020

Browse Popular Code Answers by Language