0 关注者

类 yii\helpers\BaseInflector

继承关系yii\helpers\BaseInflector
子类yii\helpers\Inflector
可用版本2.0
源代码 https://github.com/yiisoft/yii2/blob/master/framework/helpers/BaseInflector.php

BaseInflector 为 yii\helpers\Inflector 提供具体实现。

不要使用 BaseInflector。请改用 yii\helpers\Inflector

公有属性

隐藏继承属性

属性 类型 描述 定义于
$plurals array 将单词转换为复数形式的规则。 yii\helpers\BaseInflector
$singulars array 将单词转换为单数形式的规则。 yii\helpers\BaseInflector
$specials array 将单词在复数和单数形式之间转换的特殊规则。 yii\helpers\BaseInflector
$transliteration array 当 intl 不可用时,transliterate() 使用的音译回退映射。 yii\helpers\BaseInflector
$transliterator mixed 一个 Transliterator,或一个可以从中构建 Transliterator 用于音译的字符串。 yii\helpers\BaseInflector

公有方法

隐藏继承方法

方法 描述 定义于
camel2id() 将驼峰式命名转换为小写 ID。 yii\helpers\BaseInflector
camel2words() 将驼峰式命名转换为用空格分隔的单词。 yii\helpers\BaseInflector
camelize() 将给定单词转换为驼峰式命名。 yii\helpers\BaseInflector
classify() 将表名转换为类名。 yii\helpers\BaseInflector
humanize() 从 $word 返回一个易于阅读的字符串。 yii\helpers\BaseInflector
id2camel() 将 ID 转换为驼峰式命名。 yii\helpers\BaseInflector
ordinalize() 将数字转换为序数英语形式。例如,将 13 转换为 13th,2 转换为 2nd。 yii\helpers\BaseInflector
pluralize() 将单词转换为复数形式。 yii\helpers\BaseInflector
sentence() 将单词列表转换为句子。 yii\helpers\BaseInflector
singularize() 返回 $word 的单数形式。 yii\helpers\BaseInflector
slug() 返回一个字符串,其中所有空格都转换为给定的替换字符,非单词字符被移除,其余字符被音译。 yii\helpers\BaseInflector
tableize() 将类名转换为表名(复数)命名约定。 yii\helpers\BaseInflector
titleize() 将下划线或驼峰式命名单词转换为英文句子。 yii\helpers\BaseInflector
transliterate() 返回字符串的音译版本。 yii\helpers\BaseInflector
underscore() 将任何“驼峰式命名”转换为“下划线分隔单词”。 yii\helpers\BaseInflector
variablize() 与 camelize 相同,但第一个字符为小写。 yii\helpers\BaseInflector

受保护方法

隐藏继承方法

方法 描述 定义于
hasIntl() yii\helpers\BaseInflector

常量

隐藏继承常量

常量 描述 定义于
TRANSLITERATE_LOOSE 'Any-Latin; Latin-ASCII; [\u0080-\uffff] remove' Any-Latin; Latin-ASCII; [\u0080-\uffff] remove 音译规则的快捷方式。该规则较为宽松,字母将使用基本拉丁 Unicode 块的字符进行音译。例如:获取到 どちら Українська: ґ,є, Српска: ђ, њ, џ! ¿Español? 将被音译为 huo qu dao dochira Ukrainska: g,e, Srpska: d, n, d! Espanol?。在 transliterate() 中使用。有关详细信息,请参阅 unicode 标准化形式 yii\helpers\BaseInflector
TRANSLITERATE_MEDIUM 'Any-Latin; Latin-ASCII' Any-Latin; Latin-ASCII 音译规则的快捷方式。该规则为中等,字母将被音译为 Latin-1 (ISO 8859-1) ASCII 表的字符。例如:获取到 どちら Українська: ґ,є, Српска: ђ, њ, џ! ¿Español? 将被音译为 huo qu dao dochira Ukrainsʹka: g,e, Srpska: d, n, d! ¿Espanol?。在 transliterate() 中使用。有关详细信息,请参阅 unicode 标准化形式 yii\helpers\BaseInflector
TRANSLITERATE_STRICT 'Any-Latin; NFKD' Any-Latin; NFKD 音译规则的快捷方式。该规则较为严格,字母将使用最接近的发音表示字符进行音译。结果可能包含任何 UTF-8 字符。例如:获取到 どちら Українська: ґ,є, Српска: ђ, њ, џ! ¿Español? 将被音译为 huò qǔ dào dochira Ukraí̈nsʹka: g̀,ê, Srpska: đ, n̂, d̂! ¿Español?。在 transliterate() 中使用。有关详细信息,请参阅 unicode 标准化形式 yii\helpers\BaseInflector

属性详情

隐藏继承属性

$plurals 公有静态属性

将单词转换为复数形式的规则。键是正则表达式,值是相应的替换。

public static 数组 $plurals = [
    
'/([nrlm]ese|deer|fish|sheep|measles|ois|pox|media)$/i' => '\1',
    
'/^(sea[- ]bass)$/i' => '\1',
    
'/(m)ove$/i' => '\1oves',
    
'/(f)oot$/i' => '\1eet',
    
'/(h)uman$/i' => '\1umans',
    
'/(s)tatus$/i' => '\1tatuses',
    
'/(s)taff$/i' => '\1taff',
    
'/(t)ooth$/i' => '\1eeth',
    
'/(quiz)$/i' => '\1zes',
    
'/^(ox)$/i' => '\1\2en',
    
'/([m|l])ouse$/i' => '\1ice',
    
'/(matr|vert|ind)(ix|ex)$/i' => '\1ices',
    
'/(x|ch|ss|sh)$/i' => '\1es',
    
'/([^aeiouy]|qu)y$/i' => '\1ies',
    
'/(hive)$/i' => '\1s',
    
'/(?:([^f])fe|([lr])f)$/i' => '\1\2ves',
    
'/sis$/i' => 'ses',
    
'/([ti])um$/i' => '\1a',
    
'/(p)erson$/i' => '\1eople',
    
'/(m)an$/i' => '\1en',
    
'/(c)hild$/i' => '\1hildren',
    
'/(buffal|tomat|potat|ech|her|vet)o$/i' => '\1oes',
    
'/(alumn|bacill|cact|foc|fung|nucle|radi|stimul|syllab|termin|vir)us$/i' => '\1i',
    
'/us$/i' => 'uses',
    
'/(alias)$/i' => '\1es',
    
'/(ax|cris|test)is$/i' => '\1es',
    
'/(currenc)y$/' => '\1ies',
    
'/s$/' => 's',
    
'/^$/' => '',
    
'/$/' => 's',
]
$singulars 公共静态属性

将单词转换为单数形式的规则。键是正则表达式,值是相应的替换。

public static 数组 $singulars = [
    
'/([nrlm]ese|deer|fish|sheep|measles|ois|pox|media|ss)$/i' => '\1',
    
'/^(sea[- ]bass)$/i' => '\1',
    
'/(s)tatuses$/i' => '\1tatus',
    
'/(f)eet$/i' => '\1oot',
    
'/(t)eeth$/i' => '\1ooth',
    
'/^(.*)(menu)s$/i' => '\1\2',
    
'/(quiz)zes$/i' => '\1',
    
'/(matr)ices$/i' => '\1ix',
    
'/(vert|ind)ices$/i' => '\1ex',
    
'/^(ox)en/i' => '\1',
    
'/(alias)(es)*$/i' => '\1',
    
'/(alumn|bacill|cact|foc|fung|nucle|radi|stimul|syllab|termin|viri?)i$/i' => '\1us',
    
'/([ftw]ax)es/i' => '\1',
    
'/(cris|ax|test)es$/i' => '\1is',
    
'/(shoe|slave)s$/i' => '\1',
    
'/(o)es$/i' => '\1',
    
'/ouses$/' => 'ouse',
    
'/([^a])uses$/' => '\1us',
    
'/([m|l])ice$/i' => '\1ouse',
    
'/(x|ch|ss|sh)es$/i' => '\1',
    
'/(m)ovies$/i' => '\1\2ovie',
    
'/(s)eries$/i' => '\1\2eries',
    
'/([^aeiouy]|qu)ies$/i' => '\1y',
    
'/([lr])ves$/i' => '\1f',
    
'/(tive)s$/i' => '\1',
    
'/(hive)s$/i' => '\1',
    
'/(drive)s$/i' => '\1',
    
'/([^fo])ves$/i' => '\1fe',
    
'/(^analy)ses$/i' => '\1sis',
    
'/(analy|diagno|^ba|(p)arenthe|(p)rogno|(s)ynop|(t)he)ses$/i' => '\1\2sis',
    
'/([ti])a$/i' => '\1um',
    
'/(p)eople$/i' => '\1\2erson',
    
'/(m)en$/i' => '\1an',
    
'/(c)hildren$/i' => '\1\2hild',
    
'/(n)ews$/i' => '\1\2ews',
    
'/(n)etherlands$/i' => '\1\2etherlands',
    
'/eaus$/' => 'eau',
    
'/(currenc)ies$/' => '\1y',
    
'/^(.*us)$/' => '\1',
    
'/s$/i' => '',
]
$specials 公共静态属性

将单词在复数形式和单数形式之间转换的特殊规则。键是单数形式的特殊单词,值是相应的复数形式。

public static array $specials = [
    
'atlas' => 'atlases',
    
'beef' => 'beefs',
    
'brother' => 'brothers',
    
'cafe' => 'cafes',
    
'child' => 'children',
    
'cookie' => 'cookies',
    
'corpus' => 'corpuses',
    
'cow' => 'cows',
    
'curve' => 'curves',
    
'foe' => 'foes',
    
'ganglion' => 'ganglions',
    
'genie' => 'genies',
    
'genus' => 'genera',
    
'graffito' => 'graffiti',
    
'hoof' => 'hoofs',
    
'loaf' => 'loaves',
    
'man' => 'men',
    
'money' => 'monies',
    
'mongoose' => 'mongooses',
    
'move' => 'moves',
    
'mythos' => 'mythoi',
    
'niche' => 'niches',
    
'numen' => 'numina',
    
'occiput' => 'occiputs',
    
'octopus' => 'octopuses',
    
'opus' => 'opuses',
    
'ox' => 'oxen',
    
'pasta' => 'pasta',
    
'penis' => 'penises',
    
'sex' => 'sexes',
    
'soliloquy' => 'soliloquies',
    
'testis' => 'testes',
    
'trilby' => 'trilbys',
    
'turf' => 'turfs',
    
'wave' => 'waves',
    
'Amoyese' => 'Amoyese',
    
'bison' => 'bison',
    
'Borghese' => 'Borghese',
    
'bream' => 'bream',
    
'breeches' => 'breeches',
    
'britches' => 'britches',
    
'buffalo' => 'buffalo',
    
'cantus' => 'cantus',
    
'carp' => 'carp',
    
'chassis' => 'chassis',
    
'clippers' => 'clippers',
    
'cod' => 'cod',
    
'coitus' => 'coitus',
    
'Congoese' => 'Congoese',
    
'contretemps' => 'contretemps',
    
'corps' => 'corps',
    
'debris' => 'debris',
    
'diabetes' => 'diabetes',
    
'djinn' => 'djinn',
    
'eland' => 'eland',
    
'elk' => 'elk',
    
'equipment' => 'equipment',
    
'Faroese' => 'Faroese',
    
'flounder' => 'flounder',
    
'Foochowese' => 'Foochowese',
    
'gallows' => 'gallows',
    
'Genevese' => 'Genevese',
    
'Genoese' => 'Genoese',
    
'Gilbertese' => 'Gilbertese',
    
'graffiti' => 'graffiti',
    
'headquarters' => 'headquarters',
    
'herpes' => 'herpes',
    
'hijinks' => 'hijinks',
    
'Hottentotese' => 'Hottentotese',
    
'information' => 'information',
    
'innings' => 'innings',
    
'jackanapes' => 'jackanapes',
    
'Kiplingese' => 'Kiplingese',
    
'Kongoese' => 'Kongoese',
    
'Lucchese' => 'Lucchese',
    
'mackerel' => 'mackerel',
    
'Maltese' => 'Maltese',
    
'mews' => 'mews',
    
'moose' => 'moose',
    
'mumps' => 'mumps',
    
'Nankingese' => 'Nankingese',
    
'news' => 'news',
    
'nexus' => 'nexus',
    
'Niasese' => 'Niasese',
    
'Pekingese' => 'Pekingese',
    
'Piedmontese' => 'Piedmontese',
    
'pincers' => 'pincers',
    
'Pistoiese' => 'Pistoiese',
    
'pliers' => 'pliers',
    
'Portuguese' => 'Portuguese',
    
'proceedings' => 'proceedings',
    
'rabies' => 'rabies',
    
'rice' => 'rice',
    
'rhinoceros' => 'rhinoceros',
    
'salmon' => 'salmon',
    
'Sarawakese' => 'Sarawakese',
    
'scissors' => 'scissors',
    
'series' => 'series',
    
'Shavese' => 'Shavese',
    
'shears' => 'shears',
    
'siemens' => 'siemens',
    
'species' => 'species',
    
'swine' => 'swine',
    
'testes' => 'testes',
    
'trousers' => 'trousers',
    
'trout' => 'trout',
    
'tuna' => 'tuna',
    
'Vermontese' => 'Vermontese',
    
'Wenchowese' => 'Wenchowese',
    
'whiting' => 'whiting',
    
'wildebeest' => 'wildebeest',
    
'Yengeese' => 'Yengeese',
    
'software' => 'software',
    
'hardware' => 'hardware',
]
$transliteration 公共静态属性

当 intl 不可用时,transliterate() 使用的音译回退映射。

public static 数组 $transliteration = [
    
'À' => 'A',
    
'Á' => 'A',
    
'Â' => 'A',
    
'Ã' => 'A',
    
'Ä' => 'A',
    
'Å' => 'A',
    
'Æ' => 'AE',
    
'Ç' => 'C',
    
'È' => 'E',
    
'É' => 'E',
    
'Ê' => 'E',
    
'Ë' => 'E',
    
'Ì' => 'I',
    
'Í' => 'I',
    
'Î' => 'I',
    
'Ï' => 'I',
    
'Ð' => 'D',
    
'Ñ' => 'N',
    
'Ò' => 'O',
    
'Ó' => 'O',
    
'Ô' => 'O',
    
'Õ' => 'O',
    
'Ö' => 'O',
    
'Ő' => 'O',
    
'Ø' => 'O',
    
'Ù' => 'U',
    
'Ú' => 'U',
    
'Û' => 'U',
    
'Ü' => 'U',
    
'Ű' => 'U',
    
'Ý' => 'Y',
    
'Þ' => 'TH',
    
'ß' => 'ss',
    
'à' => 'a',
    
'á' => 'a',
    
'â' => 'a',
    
'ã' => 'a',
    
'ä' => 'a',
    
'å' => 'a',
    
'æ' => 'ae',
    
'ç' => 'c',
    
'è' => 'e',
    
'é' => 'e',
    
'ê' => 'e',
    
'ë' => 'e',
    
'ì' => 'i',
    
'í' => 'i',
    
'î' => 'i',
    
'ï' => 'i',
    
'ð' => 'd',
    
'ñ' => 'n',
    
'ò' => 'o',
    
'ó' => 'o',
    
'ô' => 'o',
    
'õ' => 'o',
    
'ö' => 'o',
    
'ő' => 'o',
    
'ø' => 'o',
    
'ù' => 'u',
    
'ú' => 'u',
    
'û' => 'u',
    
'ü' => 'u',
    
'ű' => 'u',
    
'ý' => 'y',
    
'þ' => 'th',
    
'ÿ' => 'y',
]
$transliterator 公共静态属性

可以是 Transliterator,或者是一个可以用来构建 Transliterator 用于转写的字符串。当intl可用时,被 transliterate() 使用。默认为 TRANSLITERATE_LOOSE

另请参阅 https://php.ac.cn/manual/en/transliterator.transliterate.php

public static 混合 $transliterator self::TRANSLITERATE_LOOSE

方法详情

隐藏继承方法

camel2id() 公共静态方法

将驼峰式命名转换为小写 ID。

ID中的单词可以使用指定的字符连接(默认为“-”)。例如,“PostTag”将转换为“post-tag”。

public static 字符串 camel2id ( $name, $separator '-', $strict false )
$name 字符串

要转换的字符串

$separator 字符串

用于连接ID中单词的字符

$strict 布尔值|字符串

是否在两个连续的大写字符之间插入分隔符,默认为false

返回 字符串

生成的ID

                public static function camel2id($name, $separator = '-', $strict = false)
{
    if (empty($name)) {
        return (string) $name;
    }
    $regex = $strict ? '/\p{Lu}/u' : '/(?<!\p{Lu})\p{Lu}/u';
    if ($separator === '_') {
        return mb_strtolower(trim(preg_replace($regex, '_\0', $name), '_'), self::encoding());
    }
    return mb_strtolower(trim(str_replace('_', $separator, preg_replace($regex, $separator . '\0', $name)), $separator), self::encoding());
}

            
camel2words() 公共静态方法

将驼峰式命名转换为用空格分隔的单词。

例如,'PostTag' 将被转换为 'Post Tag'。

public static string camel2words ( $name, $ucwords true )
$name 字符串

要转换的字符串

$ucwords 布尔值

是否将每个单词的首字母大写

返回 字符串

结果单词

                public static function camel2words($name, $ucwords = true)
{
    if (empty($name)) {
        return (string) $name;
    }
    // Add a space before any uppercase letter preceded by a lowercase letter (xY => x Y)
    // and any uppercase letter preceded by an uppercase letter and followed by a lowercase letter (XYz => X Yz)
    $label = preg_replace('/(?<=\p{Ll})\p{Lu}|(?<=\p{L})\p{Lu}(?=\p{Ll})/u', ' \0', $name);
    $label = mb_strtolower(trim(str_replace(['-', '_', '.'], ' ', $label)), self::encoding());
    return $ucwords ? StringHelper::mb_ucwords($label, self::encoding()) : $label;
}

            
camelize() 公共静态方法

将给定单词转换为驼峰式命名。

将类似 "send_email" 的单词转换为 "SendEmail"。它将删除单词中的非字母数字字符,因此 "who's online" 将被转换为 "WhoSOnline"。

另请参阅 variablize()

public static string camelize ( $word )
$word 字符串

要转换为驼峰式大小写的单词

                public static function camelize($word)
{
    if (empty($word)) {
        return (string) $word;
    }
    return str_replace(' ', '', StringHelper::mb_ucwords(preg_replace('/[^\pL\pN]+/u', ' ', $word), self::encoding()));
}

            
classify() 公共静态方法

将表名转换为类名。

例如,将 "people" 转换为 "Person"。

public static string classify ( $tableName )
$tableName 字符串

                public static function classify($tableName)
{
    if (empty($tableName)) {
        return (string) $tableName;
    }
    return static::camelize(static::singularize($tableName));
}

            
hasIntl() 受保护的静态方法

protected static boolean hasIntl ( )
返回 布尔值

如果加载了 intl 扩展

                protected static function hasIntl()
{
    return extension_loaded('intl');
}

            
humanize() 公共静态方法

从 $word 返回一个易于阅读的字符串。

public static string humanize ( $word, $ucAll false )
$word 字符串

要人性化的字符串

$ucAll 布尔值

是否将所有单词设置为大写

                public static function humanize($word, $ucAll = false)
{
    if (empty($word)) {
        return (string) $word;
    }
    $word = str_replace('_', ' ', preg_replace('/_id$/', '', $word));
    $encoding = self::encoding();
    return $ucAll ? StringHelper::mb_ucwords($word, $encoding) : StringHelper::mb_ucfirst($word, $encoding);
}

            
id2camel() 公共静态方法

将 ID 转换为驼峰式命名。

ID 中由 $separator(默认为 '-')分隔的单词将连接成驼峰式大小写名称。例如,'post-tag' 将转换为 'PostTag'。

public static string id2camel ( $id, $separator '-' )
$id 字符串

要转换的 ID

$separator 字符串

用于分隔 ID 中单词的字符

返回 字符串

生成的驼峰式大小写名称

                public static function id2camel($id, $separator = '-')
{
    if (empty($id)) {
        return (string) $id;
    }
    return str_replace(' ', '', StringHelper::mb_ucwords(str_replace($separator, ' ', $id), self::encoding()));
}

            
ordinalize() 公共静态方法

将数字转换为序数英语形式。例如,将 13 转换为 13th,2 转换为 2nd。

..

public static string ordinalize ( $number )
$number 整数

获取其序数的数字

                public static function ordinalize($number)
{
    if (in_array($number % 100, range(11, 13))) {
        return $number . 'th';
    }
    switch ($number % 10) {
        case 1:
            return $number . 'st';
        case 2:
            return $number . 'nd';
        case 3:
            return $number . 'rd';
        default:
            return $number . 'th';
    }
}

            
pluralize() 公共静态方法

将单词转换为复数形式。

请注意,这仅适用于英语!例如,'apple' 将变为 'apples','child' 将变为 'children'。

public static string pluralize ( $word )
$word 字符串

要复数化的单词

返回 字符串

复数化的单词

                public static function pluralize($word)
{
    if (empty($word)) {
        return (string) $word;
    }
    if (isset(static::$specials[$word])) {
        return static::$specials[$word];
    }
    foreach (static::$plurals as $rule => $replacement) {
        if (preg_match($rule, $word)) {
            return preg_replace($rule, $replacement, $word);
        }
    }
    return $word;
}

            
sentence() 公共静态方法 (自版本 2.0.1 起可用)

将单词列表转换为句子。

对最后几个单词进行特殊处理。例如,

$words = ['Spain', 'France'];
echo Inflector::sentence($words);
// output: Spain and France

$words = ['Spain', 'France', 'Italy'];
echo Inflector::sentence($words);
// output: Spain, France and Italy

$words = ['Spain', 'France', 'Italy'];
echo Inflector::sentence($words, ' & ');
// output: Spain, France & Italy
public static string sentence ( array $words, $twoWordsConnector null, $lastWordConnector null, $connector ', ' )
$words array

要转换为字符串的单词

$twoWordsConnector string|null

当只有两个单词时连接单词的字符串

$lastWordConnector string|null

连接最后两个单词的字符串。如果此值为 null,则将取 $twoWordsConnector 的值。

$connector 字符串

连接除由 $lastWordConnector 和 $twoWordsConnector 连接的单词之外的其他单词的字符串

返回 字符串

生成的句子

                public static function sentence(array $words, $twoWordsConnector = null, $lastWordConnector = null, $connector = ', ')
{
    if ($twoWordsConnector === null) {
        $twoWordsConnector = Yii::t('yii', ' and ');
    }
    if ($lastWordConnector === null) {
        $lastWordConnector = $twoWordsConnector;
    }
    switch (count($words)) {
        case 0:
            return '';
        case 1:
            return reset($words);
        case 2:
            return implode($twoWordsConnector, $words);
        default:
            return implode($connector, array_slice($words, 0, -1)) . $lastWordConnector . end($words);
    }
}

            
singularize() 公共静态方法

返回 $word 的单数形式。

public static string singularize ( $word )
$word 字符串

要单数化的英文单词

返回 字符串

单数名词。

                public static function singularize($word)
{
    if (empty($word)) {
        return (string) $word;
    }
    $result = array_search($word, static::$specials, true);
    if ($result !== false) {
        return $result;
    }
    foreach (static::$singulars as $rule => $replacement) {
        if (preg_match($rule, $word)) {
            return preg_replace($rule, $replacement, $word);
        }
    }
    return $word;
}

            
slug() 公共静态方法

返回一个字符串,其中所有空格都转换为给定的替换字符,非单词字符被移除,其余字符被音译。

如果 intl 扩展不可用,则使用回退方法,该方法仅转换拉丁字符并删除其余字符。您可以通过辅助函数的 $transliteration 属性自定义字符映射。

public static string slug ( $string, $replacement '-', $lowercase true )
$string 字符串

要转换的任意字符串

$replacement 字符串

用于空格的替换

$lowercase 布尔值

是否以小写形式返回字符串。默认为 true

返回 字符串

转换后的字符串。

                public static function slug($string, $replacement = '-', $lowercase = true)
{
    if (empty($string)) {
        return (string) $string;
    }
    if ((string)$replacement !== '') {
        $parts = explode($replacement, static::transliterate($string));
    } else {
        $parts = [static::transliterate($string)];
    }
    $replaced = array_map(function ($element) use ($replacement) {
        $element = preg_replace('/[^a-zA-Z0-9=\s—–-]+/u', '', $element);
        return preg_replace('/[=\s—–-]+/u', $replacement, $element);
    }, $parts);
    $string = trim(implode($replacement, $replaced), $replacement);
    if ((string)$replacement !== '') {
        $string = preg_replace('#' . preg_quote($replacement, '#') . '+#', $replacement, $string);
    }
    return $lowercase ? strtolower($string) : $string;
}

            
tableize() 公共静态方法

将类名转换为表名(复数)命名约定。

例如,将 "Person" 转换为 "people"。

public static string tableize ( $className )
$className 字符串

用于获取相关 table_name 的类名

                public static function tableize($className)
{
    if (empty($className)) {
        return (string) $className;
    }
    return static::pluralize(static::underscore($className));
}

            
titleize() 公共静态方法

将下划线或驼峰式命名单词转换为英文句子。

public static string titleize ( $words, $ucAll false )
$words 字符串
$ucAll 布尔值

是否将所有单词都设置为大写

                public static function titleize($words, $ucAll = false)
{
    if (empty($words)) {
        return (string) $words;
    }
    $words = static::humanize(static::underscore($words), $ucAll);
    return $ucAll ? StringHelper::mb_ucwords($words, self::encoding()) : StringHelper::mb_ucfirst($words, self::encoding());
}

            
transliterate() 公共静态方法

返回字符串的音译版本。

如果 intl 扩展不可用,则使用回退方法,该方法仅转换拉丁字符并删除其余字符。您可以通过辅助函数的 $transliteration 属性自定义字符映射。

public static string transliterate ( $string, $transliterator null )
$string 字符串

输入字符串

$transliterator string|Transliterator|null

可以是 Transliterator 或者一个可以构建 Transliterator 的字符串。

版本 描述
2.0.7 此方法为公共方法。

                public static function transliterate($string, $transliterator = null)
{
    if (empty($string)) {
        return (string) $string;
    }
    if (static::hasIntl()) {
        if ($transliterator === null) {
            $transliterator = static::$transliterator;
        }
        return transliterator_transliterate($transliterator, $string);
    }
    return strtr($string, static::$transliteration);
}

            
underscore() 公共静态方法

将任何“驼峰式命名”转换为“下划线分隔单词”。

public static string underscore ( $words )
$words 字符串

需要添加下划线的单词

                public static function underscore($words)
{
    if (empty($words)) {
        return (string) $words;
    }
    return mb_strtolower(preg_replace('/(?<=\\pL)(\\p{Lu})/u', '_\\1', $words), self::encoding());
}

            
variablize() 公共静态方法

与 camelize 相同,但第一个字符为小写。

将类似“send_email”的单词转换为“sendEmail”。它将删除单词中的非字母数字字符,因此“who's online”将转换为“whoSOnline”。

public static string variablize ( $word )
$word 字符串

转换为 lowerCamelCase

                public static function variablize($word)
{
    if (empty($word)) {
        return (string) $word;
    }
    $word = static::camelize($word);
    return mb_strtolower(mb_substr($word, 0, 1, self::encoding())) . mb_substr($word, 1, null, self::encoding());
}