本文目录一览:
php将字符串中的阿拉伯数字转换为中文数字
为了方便调用我喜欢使用函数的方法
?php
function numToWord($num)
{
$chiNum = array('零', '一', '二', '三', '四', '五', '六', '七', '八', '九');
$chiUni = array('','十', '百', '千', '万', '亿', '十', '百', '千');
$chiStr = '';
$num_str = (string)$num;
$count = strlen($num_str);
$last_flag = true; //上一个 是否为0
$zero_flag = true; //是否第一个
$temp_num = null; //临时数字
$chiStr = '';//拼接结果
if ($count == 2) {//两位数
$temp_num = $num_str[0];
$chiStr = $temp_num == 1 ? $chiUni[1] : $chiNum[$temp_num].$chiUni[1];
//当以1开头 都是十一,十二,以十开头的 我们就取$chiUni[i]也就是十
当不是以1开头时,而是以2,3,4,我们取这个数字相应的中文并拼接上十
$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;
//$index%9 index原始值为0,所以开头为0 后面根据循环得到:0,1,2,3...(不知道为什么直接用$index而是选择$index%9 毕竟两者结果是一样的)
//当输入的值为:1003 ,防止输出一千零零三的错误情况,$last_flag就起到作用了当翻译倒数第二个值时,将$last_flag设定为true;翻译第三值时在if(!$zero!$last_flag)的判断中会将其拦截,从而跳过
$zero_flag = false;
$last_flag = false;
}
$index ++;
}
}else{
$chiStr = $chiNum[$num_str[0]]; //单个数字的直接取中文
}
return $chiStr;
}
echo numToWord(12345);
?
结果截图:
php 字符串转换成数字
1.强制类型转换方式
$foo = "1"; // $foo 是字符串类型
$bar = (int)$foo; // $bar 是整型
2.内置函数方式
$foo = "1"; // $foo 是字符串类型
$bar = intval($foo); // $bar 是整型
3.格式化字符串方式
$foo = "1"; // $foo 是字符串类型
$bar = sprintf("%d", $foo); // $bar 是字符串类型
“php”字符串如何转换成数字?
1.强制类型转换方式 \x0d\x0a$foo = "1"; // $foo 是字符串类型 \x0d\x0a$bar = (int)$foo; // $bar 是整型 \x0d\x0a\x0d\x0a2.内置函数方式 \x0d\x0a$foo = "1"; // $foo 是字符串类型 \x0d\x0a$bar = intval($foo); // $bar 是整型 \x0d\x0a\x0d\x0a3.格式化字符串方式 \x0d\x0a$foo = "1"; // $foo 是字符串类型 \x0d\x0a$bar = sprintf("%d", $foo); // $bar 是字符串类型