溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

php如何實(shí)現(xiàn)將數(shù)字轉(zhuǎn)為中文?

發(fā)布時(shí)間:2020-05-20 17:13:55 來源:億速云 閱讀:186 作者:鴿子 欄目:編程語言

php如何實(shí)現(xiàn)將數(shù)字轉(zhuǎn)為中文?

php實(shí)現(xiàn)數(shù)字轉(zhuǎn)中文的兩種方法

直接上實(shí)例,寫到 千億上了。

<?php
/**
* 把數(shù)字1-1億換成漢字表述,如:123->一百二十三
* @param [num] $num [數(shù)字]
* @return [string] [string]
*/
function numToWord($num)
{
$chiNum = array('零', '一', '二', '三', '四', '五', '六', '七', '八', '九');
$chiUni = array('','十', '百', '千', '萬', '億', '十', '百', '千');
 
$chiStr = '';
 
$num_str = (string)$num;
 
$count = strlen($num_str);
$last_flag = true; //上一個(gè) 是否為0
$zero_flag = true; //是否第一個(gè)
$temp_num = null; //臨時(shí)數(shù)字
 
$chiStr = '';//拼接結(jié)果
if ($count == 2) {//兩位數(shù)
$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);

輸出結(jié)果顯示:

一百五十

方法二:

<?php
 /**
* 數(shù)字轉(zhuǎn)換為中文
* @param  string|integer|float  $num  目標(biāo)數(shù)字
* @param  integer $mode 模式[true:金額(默認(rèn)),false:普通數(shù)字表示]
* @param  boolean $sim 使用小寫(默認(rèn))
* @return string
*/
 function number2chinese($num,$mode = true,$sim = true){
    if(!is_numeric($num)) return '含有非數(shù)字非小數(shù)點(diǎn)字符!';
    $char    = $sim ? array('零','一','二','三','四','五','六','七','八','九')
    : array('零','壹','貳','叁','肆','伍','陸','柒','捌','玖');
    $unit    = $sim ? array('','十','百','千','','萬','億','兆')
    : array('','拾','佰','仟','','萬','億','兆');
    $retval  = $mode ? '元':'點(diǎn)';
    //小數(shù)部分
    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]];
            }
        }
    }
    //整數(shù)部分
    $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;
 }
 //實(shí)例調(diào)用=====================================================
$num = '0123648867.789';
echo $num,'<br>';
 //普通數(shù)字的漢字表示
echo '普通:',number2chinese($num,false),'';
echo '<br>';
 //金額漢字表示
echo '金額(簡(jiǎn)體):',number2chinese($num,true),'';
echo '<br>';
echo '金額(繁體):',number2chinese($num,true,false);

輸出結(jié)果顯示:

0123648867.789
普通:零一二三六四八八六七點(diǎn)七八九
金額(簡(jiǎn)體):一億二千三百六十四萬八千八百六十七元七角八分
金額(繁體):壹億貳仟叁佰陸拾肆萬捌仟捌佰陸拾柒元柒角捌分

以上就是php實(shí)現(xiàn)數(shù)字轉(zhuǎn)中文的兩種方法的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注億速云其它相關(guān)文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI