PHP number to Chinese character code (algorithm)_PHP tutorial
//Convert numbers to Chinese characters, such as 1210 to one thousand two hundred and ten
$num = "842105580";//Nine-digit number
function del0($num) //Remove the 0 in front of the number field
{
return "".intval($num);
}
function n2c($x) //A single number changes to a Chinese character
{
$arr_n = array("zero","one","two","three","four","five" ,"six","seven","eight","nine","ten");
return $arr_n[$x];
}
function num_r($abcd) //Read Value (4 digits)
{
$arr= array();
$str = ""; //The read Chinese character value
$flag = 0; //Whether the bit is Zero
$flag_end = 1; //Whether it ends with "zero"
$size_r = strlen($abcd);
for($i=0; $i<$size_r; $i++)
{
$arr[$i] = $abcd{$i};
}
$arrlen = count($arr);
for($j=0; $j<$arrlen ; $j++)
{
$ch = n2c($arr[$arrlen-1-$j]); //Convert Chinese characters from back to front
echo $ch;
echo "" ;
if($ch == "zero" && $flag == 0){ //If it is the first zero
$flag = 1; //This bit is zero
$str = $ ch.$str; //Add Chinese character numerical string
continue;
}elseif($ch == "zero"){ //If it is not the first zero
continue;
}
$flag = 0; //This bit is not zero
switch($j) {
case 0: $str = $ch; $flag_end = 0; break; //The first bit (last) , does not end with "zero"
case 1: $str = $ch."十".$str; break; //The second digit
case 2: $str = $ch."hundred".$ str; break; //The third digit
case 3: $str = $ch."千".$str; break; //The fourth digit
}
}
if($flag_end == 1) //If it ends with "zero"
{
mb_internal_encoding("UTF-8");
$str = mb_substr($str, 0, mb_strlen($str)-1); //Remove "zero"
}
return $str;
}
function num2ch($num) //Overall read conversion
{
$num_real = del0($ num);//Remove the leading "0"
$numlen = strlen($num_real);
echo "numlen=".$numlen."";
if($numlen >= 9) //If it reaches nine digits, read the "billion" digits
{
$y=substr($num_real, -9, 1);
//echo $y;
$wsbq = substr ($num_real, -8, 4);
$gsbq = substr($num_real, -4);
$a = num_r(del0($gsbq));
$b = num_r(del0( $wsbq))."Million";
$c = num_r(del0($y))."Billion";
}elseif($numlen <= 8 && $numlen >= 5) // If greater than or equal to "ten thousand"
{
$wsbq = substr($num_real, 0, $numlen-4);
$gsbq = substr($num_real, -4);
$a = num_r(del0($gsbq));
$b = num_r(del0($wsbq))."万";
$c="";
}elseif($numlen <= 4) //If less than or equal to "thousand"
{
$gsbq = substr( $num_real, -$numlen);
$a = num_r(del0($gsbq));
$b=" ";
$c="";
}
$ch_num = $c.$b.$a;
return $ch_num;
}
echo $num."" ; //Number
echo num2ch($num); //Chinese characters
echo "";
echo num2ch("1240");

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

Validator can be created by adding the following two lines in the controller.

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

CakePHP is an open source MVC framework. It makes developing, deploying and maintaining applications much easier. CakePHP has a number of libraries to reduce the overload of most common tasks.
