public static function Inflector::camelize

Camelize a word. This uses the classify() method and turns the first character to lowercase

Parameters

string $word:

Return value

string $word

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Util/Inflector.php, line 68

Class

Inflector
Doctrine inflector has static methods for inflecting text

Namespace

Doctrine\Common\Util

Code

public static function camelize($word) {
  return lcfirst(self::classify($word));
}