yii\helpers\BaseInflector::variablize PHP Метод

variablize() публичный статический Метод

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"
public static variablize ( string $word ) : string
$word string to lowerCamelCase
Результат string
    public static function variablize($word)
    {
        $word = static::camelize($word);
        return strtolower($word[0]) . substr($word, 1);
    }