码迷,mamicode.com
首页 > Web开发 > 详细

将阿拉伯数字转换成中文的php函数

时间:2017-08-12 17:07:01      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:转换   strlen   als   china   cti   enum   i++   for   阿拉伯   

function toChinaseNum($num){
    $char = array("零","一","二","三","四","五","六","七","八","九");
    $dw = array("","十","百","千","万","亿","兆");
    $retval = "";
    $proZero = false;
    for($i = 0;$i < strlen($num);$i++){
        if($i > 0)    $temp = (int)(($num % pow (10,$i+1)) / pow (10,$i));
        else $temp = (int)($num % pow (10,1));
        
        if($proZero == true && $temp == 0) continue;
        
        if($temp == 0) $proZero = true;
        else $proZero = false;
        
        if($proZero)
        {
            if($retval == "") continue;
            $retval = $char[$temp].$retval;
        }
        else $retval = $char[$temp].$dw[$i].$retval;
    }
    if($retval == "一十") $retval = "十";
    return $retval;
}

  

将阿拉伯数字转换成中文的php函数

标签:转换   strlen   als   china   cti   enum   i++   for   阿拉伯   

原文地址:http://www.cnblogs.com/yangxinpeng/p/7350579.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!