Skip to content

camelCase

Convert the string to camelCase.

php
Twine\Str::camelCase( void ) : Twine\Str

Examples

php
$string = new Twine\Str('john pinkerton');

$string->camelCase(); // Returns 'johnPinkerton'

Aliases

  • Twine\Str::pascalCase() = Twine\Str::camelCase()