WP_CLI

Inflector::classify()public staticWP-CLI 1.0

Converts a word into the format for a Doctrine class name. Converts 'table_name' to 'TableName'.

Метод класса: Inflector{}

Хуков нет.

Возвращает

Строку. The classified word.

Использование

$result = Inflector::classify( $word );
$word(строка) (обязательный)
The word to classify.

Код Inflector::classify() WP-CLI 2.8.0-alpha

public static function classify( $word ) {
	return str_replace( ' ', '', ucwords( strtr( $word, '_-', '  ' ) ) );
}