php數(shù)字轉(zhuǎn)漢字的實現(xiàn)方法:首先創(chuàng)建一個PHP代碼示例文件;然后定義一個“number2Chinese”方法;接著在方法體中通過switch循環(huán)語句實現(xiàn)轉(zhuǎn)換邏輯;最后執(zhí)行該文件即可。
成都創(chuàng)新互聯(lián)公司長期為上千家客戶提供的網(wǎng)站建設(shè)服務(wù),團隊從業(yè)經(jīng)驗10年,關(guān)注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為長安企業(yè)提供專業(yè)的成都網(wǎng)站制作、成都做網(wǎng)站,長安網(wǎng)站改版等技術(shù)服務(wù)。擁有十載豐富建站經(jīng)驗和眾多成功案例,為您定制開發(fā)。
推薦:《PHP教程》
PHP- 數(shù)字轉(zhuǎn)漢字
//數(shù)字轉(zhuǎn)漢字 function number2Chinese($num, $m = 1) { switch($m) { case 0: $CNum = array( array('零','壹','貳','叁','肆','伍','陸','柒','捌','玖'), array('','拾','佰','仟'), array('','萬','億','萬億') ); break; default: $CNum = array( array('零','一','二','三','四','五','六','七','八','九'), array('','十','百','千'), array('','萬','億','萬億') ); break; } // $cNum = array('零','一','二','三','四','五','六','七','八','九'); if (is_integer($num)) { $int = (string)$num; } else if (is_numeric($num)) { $num = explode('.', (string)floatval($num)); $int = $num[0]; $fl = isset($num[1]) ? $num[1] : FALSE; } // 長度 $len = strlen($int); // 中文 $chinese = array(); // 反轉(zhuǎn)的數(shù)字 $str = strrev($int); for($i = 0; $i<$len; $i+=4 ) { $s = array(0=>$str[$i], 1=>$str[$i+1], 2=>$str[$i+2], 3=>$str[$i+3]); $j = ''; // 千位 if ($s[3] !== '') { $s[3] = (int) $s[3]; if ($s[3] !== 0) { $j .= $CNum[0][$s[3]].$CNum[1][3]; } else { if ($s[2] != 0 || $s[1] != 0 || $s[0]!=0) { $j .= $CNum[0][0]; } } } // 百位 if ($s[2] !== '') { $s[2] = (int) $s[2]; if ($s[2] !== 0) { $j .= $CNum[0][$s[2]].$CNum[1][2]; } else { if ($s[3]!=0 && ($s[1] != 0 || $s[0]!=0) ) { $j .= $CNum[0][0]; } } } // 十位 if ($s[1] !== '') { $s[1] = (int) $s[1]; if ($s[1] !== 0) { $j .= $CNum[0][$s[1]].$CNum[1][1]; } else { if ($s[0]!=0 && $s[2] != 0) { $j .= $CNum[0][$s[1]]; } } } // 個位 if ($s[0] !== '') { $s[0] = (int) $s[0]; if ($s[0] !== 0) { $j .= $CNum[0][$s[0]].$CNum[1][0]; } else { // $j .= $CNum[0][0]; } } $j.=$CNum[2][$i/4]; array_unshift($chinese, $j); } $chs = implode('', $chinese); if ($fl) { $chs .= '點'; for($i=0,$j=strlen($fl); $i<$j; $i++) { $t = (int)$fl[$i]; $chs.= $str[0][$t]; } } return $chs; }