0

0

参考ROR中的单复数转换,写一个PHP的单复数转换类

PHP中文网

PHP中文网

发布时间:2016-05-25 17:10:11

|

1493人浏览过

|

来源于php中文网

原创

1. [代码]参考ROR中的单复数转换,写一个PHP的单复数转换类      

$inflector = new Inflector();

echo $inflector->pluralize('bus') . '
'; echo $inflector->singularize('buses') . '
';

2. [文件]     inflector.php 

_update_plural();
    $this->_update_singular();
    $this->_update_irregular();
    $this->_update_uncountable();
  }


  public function pluralize($word) {
    return $this->_apply_inflections($word, $this->plural);
  }

  public function singularize($word) {
    return $this->_apply_inflections($word, $this->singular);
  }

  private function _apply_inflections($word, $rules) {
    $result = $word;
    if (empty($result)) return $result;
    if (sizeof($this->uncountable) > 0) {
      foreach($this->uncountable as $u) {
        if (preg_match("#^{$u}$#", $result)) {
          return $result;
        }
      }
    }

    for($i = (sizeof($rules) - 1); $i >=0; $i--) {
      $rule = $rules[$i];
      if (preg_match($rule[0], $result)) {
        $result = preg_replace($rule[0], $rule[1], $result);
        break;
      }    
    }

    return $result;
  }

  private function _update_plural() {
    $this->_plural('/$/', 's');
    $this->_plural('/s$/i', 's');
    $this->_plural('/(ax|test)is$/i', '\1es');
    $this->_plural('/(octop|vir)us$/i', '\1i');
    $this->_plural('/(octop|vir)i$/i', '\1i');
    $this->_plural('/(alias|status)$/i', '\1es');
    $this->_plural('/(bu)s$/i', '\1ses');
    $this->_plural('/(buffal|tomat)o$/i', '\1oes');
    $this->_plural('/([ti])um$/i', '\1a');
    $this->_plural('/([ti])a$/i', '\1a');
    $this->_plural('/sis$/i', 'ses');
    $this->_plural('/(?:([^f])fe|([lr])f)$/i', '\1\2ves');
    $this->_plural('/(hive)$/i', '\1s');
    $this->_plural('/([^aeiouy]|qu)y$/i', '\1ies');
    $this->_plural('/(x|ch|ss|sh)$/i', '\1es');
    $this->_plural('/(matr|vert|ind)(?:ix|ex)$/i', '\1ices');
    $this->_plural('/(m|l)ouse$/i', '\1ice');
    $this->_plural('/(m|l)ice$/i', '\1ice');
    $this->_plural('/^(ox)$/i', '\1en');
    $this->_plural('/^(oxen)$/i', '\1');
    $this->_plural('/(quiz)$/i', '\1zes');
  }

  private function _update_singular() {
    $this->_singular('/s$/i', '');
    $this->_singular('/(n)ews$/i', '\1ews');
    $this->_singular('/([ti])a$/i', '\1um');
    $this->_singular('/((a)naly|(b)a|(d)iagno|(p)arenthe|(p)rogno|(s)ynop|(t)he)ses$/i', '\1\2sis');
    $this->_singular('/(^analy)ses$/i', '\1sis');
    $this->_singular('/([^f])ves$/i', '\1fe');
    $this->_singular('/(hive)s$/i', '\1');
    $this->_singular('/(tive)s$/i', '\1');
    $this->_singular('/([lr])ves$/i', '\1f');
    $this->_singular('/([^aeiouy]|qu)ies$/i', '\1y');
    $this->_singular('/(s)eries$/i', '\1eries');
    $this->_singular('/(m)ovies$/i', '\1ovie');
    $this->_singular('/(x|ch|ss|sh)es$/i', '\1');
    $this->_singular('/(m|l)ice$/i', '\1ouse');
    $this->_singular('/(bus)es$/i', '\1');
    $this->_singular('/(o)es$/i', '\1');
    $this->_singular('/(shoe)s$/i', '\1');
    $this->_singular('/(cris|ax|test)es$/i', '\1is');
    $this->_singular('/(octop|vir)i$/i', '\1us');
    $this->_singular('/(alias|status)es$/i', '\1');
    $this->_singular('/^(ox)en/i', '\1');
    $this->_singular('/(vert|ind)ices$/i', '\1ex');
    $this->_singular('/(matr)ices$/i', '\1ix');
    $this->_singular('/(quiz)zes$/i', '\1');
    $this->_singular('/(database)s$/i', '\1');
  }

  private function _update_irregular() {
    $this->_irregular('person', 'people');
    $this->_irregular('man', 'men');
    $this->_irregular('child', 'children');
    $this->_irregular('sex', 'sexes');
    $this->_irregular('move', 'moves');
    $this->_irregular('cow', 'kine');
    $this->_irregular('zombie', 'zombies');
  }

  private function _update_uncountable() {
    $this->_uncountable('equipment');
    $this->_uncountable('information');
    $this->_uncountable('rice');
    $this->_uncountable('money');
    $this->_uncountable('species');
    $this->_uncountable('series');
    $this->_uncountable('fish');
    $this->_uncountable('sheep');
    $this->_uncountable('jeans');
  }

  private function _plural($rule, $replacement) {
    if (is_string($rule)) unset($this->uncountable[$rule]);
    unset($this->uncountable[$replacement]);
    $this->plural[sizeof($this->plural)] = array($rule, $replacement);
  }

  private function _singular($rule, $replacement) {
    if (is_string($rule)) unset($this->uncountable[$rule]);
    unset($this->uncountable[$replacement]);
    $this->singular[sizeof($this->singular)] = array($rule, $replacement);
  }

  private function _irregular($singular, $plural) {
    unset($this->uncountable[$singular]);
    unset($this->uncountable[$plural]);
    if (strtoupper(substr($singular, 0, 1)) == strtoupper(substr($plural, 0, 1))) {
      $this->_plural('/(' . substr($singular, 0, 1) . ')' . substr($singular, 1) . '$/i', '\1' . substr($plural, 1));
      $this->_plural('/(' . substr($plural, 0, 1) . ')' . substr($plural, 1) . '$/i', '\1' . substr($plural, 1));
      $this->_singular('/(' . substr($plural, 0, 1) . ')' . substr($plural, 1) . '$/i', '\1' . substr($singular, 1));
    } else {
      $this->_plural('/' . strtoupper(substr($singular, 0, 1)) . '(?i)' . substr($singular, 1) . '$/', 
        strtoupper(substr($plural, 0, 1)) . substr($plural, 1));
      $this->_plural('/' . strtolower(substr($singular, 0, 1)) . '(?i)' . substr($singular, 1) . '$/', 
        strtolower(substr($plural, 0, 1)) . substr($plural, 1));
      $this->_plural('/' . strtoupper(substr($plural, 0, 1)) . '(?i)' . substr($plural, 1) . '$/', 
        strtoupper(substr($plural, 0, 1)) . substr($plural, 1));
      $this->_plural('/' . strtolower(substr($plural, 0, 1)) . '(?i)' . substr($plural, 1) . '$/', 
        strtolower(substr($plural, 0, 1)) . substr($plural, 1));

      $this->_singular('/' . strtoupper(substr($plural, 0, 1)) . '(?i)' . substr($plural, 1) . '$/', 
        strtoupper(substr($singular, 0, 1)) . substr($singular, 1));
      $this->_singular('/' . strtolower(substr($plural, 0, 1)) . '(?i)' . substr($plural, 1) . '$/', 
        strtolower(substr($singular, 0, 1)) . substr($singular, 1));
    }
  }

  private function _uncountable($word) {
    $this->uncountable[] = $word;
  }
}

/* End of file inflector.php */
/* Location: ./application/libraties/inflector.php */

                               

酒店管理系统项目源码(三层开发)
酒店管理系统项目源码(三层开发)

系统采用VS2008+Sql2005开发适用于中小型的酒店管理,全部采用三层架构,ASP.NET开发,运用CSS加DIV的界面布局,完整的源代码和数据库设计,是你不可多得的参考资料。 有客房管理、房间类型管理、入住和退房管理等简单功能HotelManager为网站目录DB_51aspx下为Sql2005数据库,附加即可(Sql2000格式数据库转换后稍后发布)

下载

                   

PHP速学教程(入门到精通)
PHP速学教程(入门到精通)

PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!

下载

本站声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

相关专题

更多
Java 项目构建与依赖管理(Maven / Gradle)
Java 项目构建与依赖管理(Maven / Gradle)

本专题系统讲解 Java 项目构建与依赖管理的完整体系,重点覆盖 Maven 与 Gradle 的核心概念、项目生命周期、依赖冲突解决、多模块项目管理、构建加速与版本发布规范。通过真实项目结构示例,帮助学习者掌握 从零搭建、维护到发布 Java 工程的标准化流程,提升在实际团队开发中的工程能力与协作效率。

11

2026.01.12

c++主流开发框架汇总
c++主流开发框架汇总

本专题整合了c++开发框架推荐,阅读专题下面的文章了解更多详细内容。

106

2026.01.09

c++框架学习教程汇总
c++框架学习教程汇总

本专题整合了c++框架学习教程汇总,阅读专题下面的文章了解更多详细内容。

64

2026.01.09

学python好用的网站推荐
学python好用的网站推荐

本专题整合了python学习教程汇总,阅读专题下面的文章了解更多详细内容。

139

2026.01.09

学python网站汇总
学python网站汇总

本专题整合了学python网站汇总,阅读专题下面的文章了解更多详细内容。

13

2026.01.09

python学习网站
python学习网站

本专题整合了python学习相关推荐汇总,阅读专题下面的文章了解更多详细内容。

19

2026.01.09

俄罗斯手机浏览器地址汇总
俄罗斯手机浏览器地址汇总

汇总俄罗斯Yandex手机浏览器官方网址入口,涵盖国际版与俄语版,适配移动端访问,一键直达搜索、地图、新闻等核心服务。

93

2026.01.09

漫蛙稳定版地址大全
漫蛙稳定版地址大全

漫蛙稳定版地址大全汇总最新可用入口,包含漫蛙manwa漫画防走失官网链接,确保用户随时畅读海量正版漫画资源,建议收藏备用,避免因域名变动无法访问。

480

2026.01.09

php学习网站大全
php学习网站大全

精选多个优质PHP入门学习网站,涵盖教程、实战与文档,适合零基础到进阶开发者,助你高效掌握PHP编程。

52

2026.01.09

热门下载

更多
网站特效
/
网站源码
/
网站素材
/
前端模板

精品课程

更多
相关推荐
/
热门推荐
/
最新课程
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号