/*
额,重新修改了下。现在估计没什么问题了。。。。
*/
直接上实例
写到 千亿上了。
1 /** 2 3 * @author ja颂 4 * 把数字1-1亿换成汉字表述,如:123->一百二十三 5 * @param [num] $num [数字] 6 * @return [string] [string] 7 */ 8 9 function numToWord($num)10 {11 $chiNum = array('零', '一', '二', '三', '四', '五', '六', '七', '八', '九');12 $chiUni = array('','十', '百', '千', '万','十', '百', '千', '亿', '十', '百','千','万','十', '百', '千');13 $unipro = array(4, 8);14 $chiStr = '';15 16 17 $num_str = (string)$num;18 19 $count = strlen($num_str);20 $last_flag = true; //上一个 是否为021 $zero_flag = true; //是否第一个22 $temp_num = null; //临时数字23 $uni_index = 0;24 25 $chiStr = '';//拼接结果26 if ($count == 2) {//两位数27 $temp_num = $num_str[0];28 $chiStr = $temp_num == 1 ? $chiUni[1] : $chiNum[$temp_num].$chiUni[1];29 $temp_num = $num_str[1];30 $chiStr .= $temp_num == 0 ? '' : $chiNum[$temp_num]; 31 }else if($count > 2){32 $index = 0;33 for ($i=$count-1; $i >= 0 ; $i--) { 34 $temp_num = $num_str[$i];35 if ($temp_num == 0) {36 $uni_index = $index%15;37 if ( in_array($uni_index, $uniPRo)) {38 $chiStr = $chiUni[$uni_index]. $chiStr;39 $last_flag = true;40 }else if (!$zero_flag && !$last_flag ) {41 $chiStr = $chiNum[$temp_num]. $chiStr;42 $last_flag = true;43 }44 }else{45 $chiStr = $chiNum[$temp_num].$chiUni[$index%16] .$chiStr;46 47 $zero_flag = false;48 $last_flag = false;49 }50 $index ++;51 }52 }else{53 $chiStr = $chiNum[$num_str[0]]; 54 }55 return $chiStr;56 }57 58 $num = 101001545;59 echo numToWord($num);
//结果一亿零一百万一千五百四十五