camelize($str)
Parameters: |
|
---|---|
Returns: |
Camelized string |
Return type: |
string |
Changes a string of words separated by spaces or underscores to camel case. Example:
1 | echo camelize( 'my_dog_spot' ); // Prints 'myDogSpot' |
camelize($str)
Parameters: |
|
---|---|
Returns: |
Camelized string |
Return type: |
string |
Changes a string of words separated by spaces or underscores to camel case. Example:
1 | echo camelize( 'my_dog_spot' ); // Prints 'myDogSpot' |
Designed by : w10schools
service@w10schools.com
Please login to continue.