camelize($str)
| Parameters: |
|
|---|---|
| Returns: |
Camelized string |
| Return type: |
string |
Changes a string of words separated by spaces or underscores to camel case. Example:
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:
echo camelize('my_dog_spot'); // Prints 'myDogSpot'
Please login to continue.