php實現數位轉中文的兩種方法
直接上範例,寫到 千億上了。
<?php /** * 把數位1-1億換成漢字表述,如:123->一百二十三 * @param [num] $num [數位] * @return [string] [string] */ function numToWord($num) { $chiNum = array('零', '一', '二', '三', '四', '五', '六', '七', '八', '九'); $chiUni = array('','十', '百', '千', '萬', '億', '十', '百', '千'); $chiStr = ''; $num_str = (string)$num; $count = strlen($num_str); $last_flag = true; //上一個 是否為0 $zero_flag = true; //是否第一個 $temp_num = null; //臨時數位 $chiStr = '';//拼接結果 if ($count == 2) {//兩位數 $temp_num = $num_str[0]; $chiStr = $temp_num == 1 ? $chiUni[1] : $chiNum[$temp_num].$chiUni[1]; $temp_num = $num_str[1]; $chiStr .= $temp_num == 0 ? '' : $chiNum[$temp_num]; }else if($count > 2){ $index = 0; for ($i=$count-1; $i >= 0 ; $i--) { $temp_num = $num_str[$i]; if ($temp_num == 0) { if (!$zero_flag && !$last_flag ) { $chiStr = $chiNum[$temp_num]. $chiStr; $last_flag = true; } }else{ $chiStr = $chiNum[$temp_num].$chiUni[$index%9] .$chiStr; $zero_flag = false; $last_flag = false; } $index ++; } }else{ $chiStr = $chiNum[$num_str[0]]; } return $chiStr; } $num = 150; echo numToWord($num);
輸出結果顯示:
一百五十
方法二:
<?php /** * 數位轉換為中文 * @param string|integer|float $num 目標數位 * @param integer $mode 模式[true:金額(預設),false:普通數位表示] * @param boolean $sim 使用小寫(預設) * @return string */ function number2chinese($num,$mode = true,$sim = true){ if(!is_numeric($num)) return '含有非數位非小數點字元!'; $char = $sim ? array('零','一','二','三','四','五','六','七','八','九') : array('零','壹','貳','叁','肆','伍','陸','柒','捌','玖'); $unit = $sim ? array('','十','百','千','','萬','億','兆') : array('','拾','佰','仟','','萬','億','兆'); $retval = $mode ? '元':'點'; //小數部分 if(strpos($num, '.')){ list($num,$dec) = explode('.', $num); $dec = strval(round($dec,2)); if($mode){ $retval .= "{$char[$dec['0']]}角{$char[$dec['1']]}分"; }else{ for($i = 0,$c = strlen($dec);$i < $c;$i++) { $retval .= $char[$dec[$i]]; } } } //整數部分 $str = $mode ? strrev(intval($num)) : strrev($num); for($i = 0,$c = strlen($str);$i < $c;$i++) { $out[$i] = $char[$str[$i]]; if($mode){ $out[$i] .= $str[$i] != '0'? $unit[$i%4] : ''; if($i>1 and $str[$i]+$str[$i-1] == 0){ $out[$i] = ''; } if($i%4 == 0){ $out[$i] .= $unit[4+floor($i/4)]; } } } $retval = join('',array_reverse($out)) . $retval; return $retval; } //範例呼叫===================================================== $num = '0123648867.789'; echo $num,'<br>'; //普通數位的漢字表示 echo '普通:',number2chinese($num,false),''; echo '<br>'; //金額漢字表示 echo '金額(簡體):',number2chinese($num,true),''; echo '<br>'; echo '金額(繁體):',number2chinese($num,true,false);
輸出結果顯示:
0123648867.789 普通:零一二三六四八八六七點七八九 金額(簡體):一億二千三百六十四萬八千八百六十七元七角八分 金額(繁體):壹億貳仟叁佰陸拾肆萬捌仟捌佰陸拾柒元柒角捌分
更多相關知識,請關注 PHP中文網!!
以上就是php實現數位轉中文的兩種方法的詳細內容,更多請關注TW511.COM其它相關文章!