WP_CLI
Inflector::classify()
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() Inflector::classify WP-CLI 2.8.0-alpha
public static function classify( $word ) { return str_replace( ' ', '', ucwords( strtr( $word, '_-', ' ' ) ) ); }