欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP正确的使用复数,PHP正确使用复数_PHP教程

程序员文章站 2022-05-27 12:54:48
...

PHP正确的使用复数,PHP正确使用复数

  1 php
  2 // 正确地显示复数
  3 if(!function_exists('_plurals_format'))
  4 {
  5     /**
  6      * 正确的使用复数    
  7      * @access   public
  8      * @author   zhaoyingnan   2016-02-17 11:53
  9      * @param    string        $sPluralName    非复数形式的名称
 10      * @param    int           $iAmount        数量
 11      * @return   string
 12      * @note    
 13      **/
 14     function _plurals_format($sPluralName, $iAmount)
 15     {
 16         if(!$sPluralName || !is_numeric($iAmount) || $iAmount )