123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617 |
- <?php
- namespace yii\helpers;
- use Yii;
- class BaseInflector
- {
-
- 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',
- ];
-
- 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' => '',
- ];
-
- public static $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',
- ];
-
- 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',
- ];
-
- const TRANSLITERATE_STRICT = 'Any-Latin; NFKD';
-
- const TRANSLITERATE_MEDIUM = 'Any-Latin; Latin-ASCII';
-
- const TRANSLITERATE_LOOSE = 'Any-Latin; Latin-ASCII; [\u0080-\uffff] remove';
-
- public static $transliterator = self::TRANSLITERATE_LOOSE;
-
- public static function pluralize($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;
- }
-
- public static function singularize($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;
- }
-
- public static function titleize($words, $ucAll = false)
- {
- $words = static::humanize(static::underscore($words), $ucAll);
- return $ucAll ? StringHelper::mb_ucwords($words, self::encoding()) : StringHelper::mb_ucfirst($words, self::encoding());
- }
-
- public static function camelize($word)
- {
- return str_replace(' ', '', StringHelper::mb_ucwords(preg_replace('/[^\pL\pN]+/u', ' ', $word), self::encoding()));
- }
-
- public static function camel2words($name, $ucwords = true)
- {
- $label = mb_strtolower(trim(str_replace([
- '-',
- '_',
- '.',
- ], ' ', preg_replace('/(?<!\p{Lu})(\p{Lu})|(\p{Lu})(?=\p{Ll})/u', ' \0', $name))), self::encoding());
- return $ucwords ? StringHelper::mb_ucwords($label, self::encoding()) : $label;
- }
-
- public static function camel2id($name, $separator = '-', $strict = false)
- {
- $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());
- }
-
- public static function id2camel($id, $separator = '-')
- {
- return str_replace(' ', '', StringHelper::mb_ucwords(str_replace($separator, ' ', $id), self::encoding()));
- }
-
- public static function underscore($words)
- {
- return mb_strtolower(preg_replace('/(?<=\\pL)(\\p{Lu})/u', '_\\1', $words), self::encoding());
- }
-
- public static function humanize($word, $ucAll = false)
- {
- $word = str_replace('_', ' ', preg_replace('/_id$/', '', $word));
- $encoding = self::encoding();
- return $ucAll ? StringHelper::mb_ucwords($word, $encoding) : StringHelper::mb_ucfirst($word, $encoding);
- }
-
- public static function variablize($word)
- {
- $word = static::camelize($word);
- return mb_strtolower(mb_substr($word, 0, 1, self::encoding())) . mb_substr($word, 1, null, self::encoding());
- }
-
- public static function tableize($className)
- {
- return static::pluralize(static::underscore($className));
- }
-
- public static function slug($string, $replacement = '-', $lowercase = true)
- {
- $parts = explode($replacement, 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);
- return $lowercase ? strtolower($string) : $string;
- }
-
- public static function transliterate($string, $transliterator = null)
- {
- if (static::hasIntl()) {
- if ($transliterator === null) {
- $transliterator = static::$transliterator;
- }
- return transliterator_transliterate($transliterator, $string);
- }
- return strtr($string, static::$transliteration);
- }
-
- protected static function hasIntl()
- {
- return extension_loaded('intl');
- }
-
- public static function classify($tableName)
- {
- return static::camelize(static::singularize($tableName));
- }
-
- 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';
- }
- }
-
- 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);
- }
- }
-
- private static function encoding()
- {
- return isset(Yii::$app) ? Yii::$app->charset : 'UTF-8';
- }
- }
|