Home Backend Development PHP Tutorial Convert the RMB value encapsulated in php to Chinese uppercase

Convert the RMB value encapsulated in php to Chinese uppercase

Jul 29, 2016 am 09:09 AM
array int substr

PHP encapsulated RMB value is converted to Chinese uppercase

class Num2RmbClass{
  /**
   * 人民币数值转中文大写
   * @author SunsCheung
   * @time 2015.11.11
   * @param string $number 数值 默认为0
   * @param string $int_unit 币种单位,默认"元",有的需求可能为"圆"
   * @param bool $is_round 是否对小数进行四舍五入
   * @param bool $is_extra_zero 是否对整数部分以0结尾,小数存在的数字附加0,比如1960.30,
   *       有的系统要求输出"壹仟玖佰陆拾元零叁角",实际上"壹仟玖佰陆拾元叁角"也是对的
   * @param bool $dec_to_int 是否对让小数部分进位到个位,如果进位,个位加1,小数为0,
   * @return string
   */
  public static function num2rmb($number = 0, $int_unit = '元', $is_round = TRUE, $is_extra_zero = FALSE, $dec_to_int = FALSE) {
    // 将数字切分成两段
    $parts = explode('.', $number, 2);
    $int = isset($parts[0]) ? strval($parts[0]) : '0';
    $dec = isset($parts[1]) ? strval($parts[1]) : '';
    // 如果小数点后多于2位,不四舍五入就直接截,否则就处理
    $dec_len = strlen($dec);
    if (isset($parts[1]) && $dec_len > 2) {
      if($is_round){
        if(round(floatval("0.".$dec), 2) == 1 && $dec_to_int){//小数进位到个位
          $int = empty($int)?1: strval($parts[0]+1);
          $dec = 0;
        }elseif(round(floatval("0.".$dec), 2) == 1){//小数不进位到个位
          $dec = "99";
        }else{
          $dec = substr(strrchr(strval(round(floatval("0.".$dec), 2)), '.'), 1);
          echo $dec;die('boss');
        }
      }else{
        $dec = substr($parts[1], 0, 2);
      }
    }
    // 当number为0.001时,小数点后的金额为0元
    if (empty($int) && empty($dec)) {
      return '零';
    }

    // 定义
    $chs = array('0','壹','贰','叁','肆','伍','陆','柒','捌','玖');
    $uni = array('','拾','佰','仟');
    $dec_uni = array('角', '分');
    $exp = array('', '万');
    $res = '';

    // 整数部分从右向左找
    for ($i = strlen($int) - 1, $k = 0; $i >= 0; $k++) {
      $str = '';
      // 按照中文读写习惯,每4个字为一段进行转化,i一直在减
      for ($j = 0; $j < 4 && $i >= 0; $j++, $i--) {
        $u = $int{$i} > 0 ? $uni[$j] : ''; // 非0的数字后面添加单位
        $str = $chs[$int{$i}] . $u . $str;
      }
      //echo $str."|".($k - 2)."<br>";
      $str = rtrim($str, '0');// 去掉末尾的0
      $str = preg_replace("/0+/", "零", $str); // 替换多个连续的0
      if (!isset($exp[$k])) {
        $exp[$k] = $exp[$k - 2] . '亿'; // 构建单位
      }
      $u2 = $str != '' ? $exp[$k] : '';
      $res = $str . $u2 . $res;
    }

    // 如果小数部分处理完之后是00,需要处理下
    $dec = rtrim($dec, '0');

    // 小数部分从左向右找
    if (!empty($dec)) {
      $res .= $int_unit;
      // 是否要在整数部分以0结尾的数字后附加0,有的系统有这要求
      if ($is_extra_zero) {
        if (substr($int, -1) === '0') {
          $res.= '零';
        }
      }
      for ($i = 0, $cnt = strlen($dec); $i < $cnt; $i++) {
        $u = $dec{$i} > 0 ? $dec_uni[$i] : ''; // 非0的数字后面添加单位
        $res .= $chs[$dec{$i}] . $u;
      }
      $res = rtrim($res, '0');// 去掉末尾的0
      $res = preg_replace("/0+/", "零", $res); // 替换多个连续的0
    } else {
      $res .= $int_unit . '整';
    }
    return $number < 0 &#63; "(负)".$res : $res;
  }

}

Copy after login

How to use

//$a = new Num2RmbClass;
echo (Num2RmbClass::num2rmb('1600020039.9989','圆',false,false,false));
Copy after login

Let me share with you a simpler one

function cny($ns) 
{
static $cnums = array("零","壹","贰","叁","肆","伍","陆","柒","捌","玖"), 
$cnyunits = array("圆","角","分"), 
$grees = array("拾","佰","仟","万","拾","佰","仟","亿"); 
list($ns1,$ns2) = explode(".",$ns,2); 
$ns2 = array_filter(array($ns2[1],$ns2[0])); 
$ret = array_merge($ns2,array(implode("", _cny_map_unit(str_split($ns1), $grees)), "")); 
$ret = implode("",array_reverse(_cny_map_unit($ret,$cnyunits))); 
return str_replace(array_keys($cnums), $cnums,$ret); 
}

function _cny_map_unit($list,$units) 
{ 
$ul = count($units); 
$xs = array(); 
foreach (array_reverse($list) as $x) 
{ 
$l = count($xs); 
if($x!="0" || !($l%4)) 
{
$n=($x=='0'&#63;'':$x).($units[($l-1)%$ul]); 
}
else
{
$n=is_numeric($xs[0][0]) &#63; $x : ''; 
}
array_unshift($xs, $n); 
} 
return $xs; 
}

$value='23058.04';
print cny($value);echo'
';

输出:贰万叁仟零伍拾捌圆肆角
Copy after login

Another netizen has done a good job

/**
*数字金额转换成中文大写金额的函数
*String Int $num 要转换的小写数字或小写字符串
*return 大写字母
*小数位为两位
**/
function num_to_rmb($num){
    $c1 = "零壹贰叁肆伍陆柒捌玖";
    $c2 = "分角元拾佰仟万拾佰仟亿";
    //精确到分后面就不要了,所以只留两个小数位
    $num = round($num, 2); 
    //将数字转化为整数
    $num = $num * 100;
    if (strlen($num) > 10) {
        return "金额太大,请检查";
    } 
    $i = 0;
    $c = "";
    while (1) {
        if ($i == 0) {
            //获取最后一位数字
            $n = substr($num, strlen($num)-1, 1);
        } else {
            $n = $num % 10;
        }
        //每次将最后一位数字转化为中文
        $p1 = substr($c1, 3 * $n, 3);
        $p2 = substr($c2, 3 * $i, 3);
        if ($n != '0' || ($n == '0' && ($p2 == '亿' || $p2 == '万' || $p2 == '元'))) {
            $c = $p1 . $p2 . $c;
        } else {
            $c = $p1 . $c;
        }
        $i = $i + 1;
        //去掉数字最后一位了
        $num = $num / 10;
        $num = (int)$num;
        //结束循环
        if ($num == 0) {
            break;
        } 
    }
    $j = 0;
    $slen = strlen($c);
    while ($j < $slen) {
        //utf8一个汉字相当3个字符
        $m = substr($c, $j, 6);
        //处理数字中很多0的情况,每次循环去掉一个汉字“零”
        if ($m == '零元' || $m == '零万' || $m == '零亿' || $m == '零零') {
            $left = substr($c, 0, $j);
            $right = substr($c, $j + 3);
            $c = $left . $right;
            $j = $j-3;
            $slen = $slen-3;
        } 
        $j = $j + 3;
    } 
    //这个是为了去掉类似23.0中最后一个“零”字
    if (substr($c, strlen($c)-3, 3) == '零') {
        $c = substr($c, 0, strlen($c)-3);
    }
    //将处理的汉字加上“整”
    if (empty($c)) {
        return "零元整";
    }else{
        return $c . "整";
    }
}
echo num_to_rmb(23000000.00); //贰仟叁佰万元整
Copy after login

The above introduces the conversion of RMB values ​​​​encapsulated in PHP into Chinese uppercase, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Detailed explanation of the method of converting int type to bytes in PHP Detailed explanation of the method of converting int type to bytes in PHP Mar 06, 2024 pm 06:18 PM

Detailed explanation of the method of converting int type to byte in PHP In PHP, we often need to convert the integer type (int) to the byte (Byte) type, such as when dealing with network data transmission, file processing, or encryption algorithms. This article will introduce in detail how to convert the int type to the byte type and provide specific code examples. 1. The relationship between int type and byte In the computer field, the basic data type int represents an integer, while byte (Byte) is a computer storage unit, usually 8-bit binary data

C++ program to convert double type variable to int type C++ program to convert double type variable to int type Aug 25, 2023 pm 08:25 PM

In C++, variables of type int can only hold positive or negative integer values; they cannot hold decimal values. There are float and double values ​​available for this purpose. The double data type was created to store decimals up to seven digits after the decimal point. Conversion of an integer to a double data type can be done automatically by the compiler (called an "implicit" conversion), or it can be explicitly requested by the programmer from the compiler (called an "explicit" conversion). In the following sections, we'll cover various conversion methods. Implicit conversions The compiler performs implicit type conversions automatically. To achieve this, two variables are required - one of floating point type and the other of integer type. When we simply assign a floating point value or variable to an integer variable, the compiler takes care of all the other things

What is the value range of int32? What is the value range of int32? Aug 11, 2023 pm 02:53 PM

The value range of int32 is from -2 to the 31st power to 2 to the 31st power minus 1, that is, -2147483648 to 2147483647. int32 is a signed integer type, which means it can represent positive numbers, negative numbers, and zero. It uses 1 bit to represent the sign bit, and the remaining 31 bits are used to represent the numerical value. Since one bit is used to represent the sign bit, the effective number of int32 bits is 31.

Sort array using Array.Sort function in C# Sort array using Array.Sort function in C# Nov 18, 2023 am 10:37 AM

Title: Example of using the Array.Sort function to sort an array in C# Text: In C#, array is a commonly used data structure, and it is often necessary to sort the array. C# provides the Array class, which has the Sort method to conveniently sort arrays. This article will demonstrate how to use the Array.Sort function in C# to sort an array and provide specific code examples. First, we need to understand the basic usage of the Array.Sort function. Array.So

How many bytes does int occupy? How many bytes does int occupy? Jan 22, 2024 pm 03:14 PM

The number of bytes occupied by the int type may vary in different programming languages ​​and different hardware platforms. Detailed introduction: 1. In C language, the int type usually occupies 2 bytes or 4 bytes. In 32-bit systems, the int type occupies 4 bytes, while in 16-bit systems, the int type occupies 2 bytes. In a 64-bit system, the int type may occupy 8 bytes; 2. In Java, the int type usually occupies 4 bytes, while in Python, the int type has no byte limit and can be automatically adjusted, etc.

How to convert int to string type in go language How to convert int to string type in go language Jun 04, 2021 pm 03:56 PM

Conversion method: 1. Use the Itoa() function, the syntax "strconv.Itoa(num)"; 2. Use the FormatInt() function to convert int type data into the specified base and return it in the form of a string, the syntax "strconv .FormatInt(num,10)".

How many numbers does java int have? How many numbers does java int have? Mar 06, 2023 pm 04:09 PM

In Java, int is a 32-bit signed data type, and its variables require 32-bit memory; the valid range of the int data type is -2147483648 to 2147483647, and all integers in this range are called integer literals. An integer literal can be assigned to an int variable, such as "int num1 = 21;".

PHP returns the ASCII value of the first character of the string PHP returns the ASCII value of the first character of the string Mar 21, 2024 am 11:01 AM

This article will explain in detail the ASCII value of the first character of the string returned by PHP. The editor thinks it is very practical, so I share it with you as a reference. I hope you can gain something after reading this article. PHP returns the ASCII value of the first character of a string Introduction In PHP, getting the ASCII value of the first character of a string is a common operation that involves basic knowledge of string processing and character encoding. ASCII values ​​are used to represent the numeric value of characters in computer systems and are critical for character comparison, data transmission and storage. The process of getting the ASCII value of the first character of a string involves the following steps: Get String: Determine the string for which you want to get the ASCII value. It can be a variable or a string constant

See all articles