Phactory\Inflector::camelize PHP Method

camelize() public method

Converts a word like "send_email" to "SendEmail". It will remove non alphanumeric character from the word, so "who's online" will be converted to "WhoSOnline"
See also: variablize
public camelize ( string $word ) : string
$word string Word to convert to camel case
return string UpperCamelCasedWord
    function camelize($word)
    {
        return str_replace(' ', '', ucwords(preg_replace('/[^A-Z^a-z^0-9]+/', ' ', $word)));
    }