123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- <?php namespace Laravel;
- class Inflector {
-
- private static $singular_cache = array();
-
- private static $plural_cache = array();
-
- private static $plural = array(
- '/(quiz)$/i' => "$1zes",
- '/^(ox)$/i' => "$1en",
- '/([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",
- '/(shea|lea|loa|thie)f$/i' => "$1ves",
- '/sis$/i' => "ses",
- '/([ti])um$/i' => "$1a",
- '/(tomat|potat|ech|her|vet)o$/i' => "$1oes",
- '/(bu)s$/i' => "$1ses",
- '/(alias)$/i' => "$1es",
- '/(octop)us$/i' => "$1i",
- '/(ax|test)is$/i' => "$1es",
- '/(us)$/i' => "$1es",
- '/s$/i' => "s",
- '/$/' => "s"
- );
-
- private static $singular = array(
- '/(quiz)zes$/i' => "$1",
- '/(matr)ices$/i' => "$1ix",
- '/(vert|ind)ices$/i' => "$1ex",
- '/^(ox)en$/i' => "$1",
- '/(alias)es$/i' => "$1",
- '/(octop|vir)i$/i' => "$1us",
- '/(cris|ax|test)es$/i' => "$1is",
- '/(shoe)s$/i' => "$1",
- '/(o)es$/i' => "$1",
- '/(bus)es$/i' => "$1",
- '/([m|l])ice$/i' => "$1ouse",
- '/(x|ch|ss|sh)es$/i' => "$1",
- '/(m)ovies$/i' => "$1ovie",
- '/(s)eries$/i' => "$1eries",
- '/([^aeiouy]|qu)ies$/i' => "$1y",
- '/([lr])ves$/i' => "$1f",
- '/(tive)s$/i' => "$1",
- '/(hive)s$/i' => "$1",
- '/(li|wi|kni)ves$/i' => "$1fe",
- '/(shea|loa|lea|thie)ves$/i' => "$1f",
- '/(^analy)ses$/i' => "$1sis",
- '/((a)naly|(b)a|(d)iagno|(p)arenthe|(p)rogno|(s)ynop|(t)he)ses$/i' => "$1$2sis",
- '/([ti])a$/i' => "$1um",
- '/(n)ews$/i' => "$1ews",
- '/(h|bl)ouses$/i' => "$1ouse",
- '/(corpse)s$/i' => "$1",
- '/(us)es$/i' => "$1",
- '/(us|ss)$/i' => "$1",
- '/s$/i' => "",
- );
-
- private static $irregular = array(
- 'child' => 'children',
- 'foot' => 'feet',
- 'goose' => 'geese',
- 'man' => 'men',
- 'move' => 'moves',
- 'person' => 'people',
- 'sex' => 'sexes',
- 'tooth' => 'teeth',
- );
-
- private static $uncountable = array(
- 'equipment',
- 'data',
- 'deer',
- 'fish',
- 'information',
- 'money',
- 'rice',
- 'series',
- 'sheep',
- 'species',
- );
-
- public static function plural_if($value, $count)
- {
- return ($count > 1) ? static::plural($value) : $value;
- }
-
- public static function plural($value)
- {
- $irregular = array_flip(static::$irregular);
- return static::$plural_cache[$value] = static::inflect($value, static::$plural_cache, $irregular, static::$plural);
- }
-
- public static function singular($value)
- {
- return static::$singular_cache[$value] = static::inflect($value, static::$singular_cache, static::$irregular, static::$singular);
- }
-
- private static function inflect($value, $cache, $irregular, $source)
- {
- if (array_key_exists($value, $cache))
- {
- return $cache[$value];
- }
- if (in_array(strtolower($value), static::$uncountable))
- {
- return $value;
- }
- foreach ($irregular as $irregular => $pattern)
- {
- if (preg_match($pattern = '/'.$pattern.'$/i', $value))
- {
- return preg_replace($pattern, $irregular, $value);
- }
- }
- foreach ($source as $pattern => $inflected)
- {
- if (preg_match($pattern, $value))
- {
- return preg_replace($pattern, $inflected, $value);
- }
- }
- return $value;
- }
- }
|