PHP正确的使用复数
程序员文章站
2022-05-23 17:43:56
...
1 php 2// 正确地显示复数 3if(!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 **/ 14function _plurals_format($sPluralName, $iAmount) 15 { 16if(!$sPluralName || !is_numeric($iAmount) || $iAmount )