php格式化金额函数分享

前端之家收集整理的这篇文章主要介绍了php格式化金额函数分享前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

最近的项目在处理资金这一块的功能,对人民币金额的格式化输出是必不可少的功能。这个功能比较独立而且还比较大众化,所以封装成了函数就发上去也算是方便大家。

代码如下:
0 ? '' : '-'; $int_money = intval(abs($money)); $len = intval(abs($len)); $decimal = '';//小数 if ($len > 0) { $decimal = '.'.substr(sprintf('%01.'.$len.'f',$money),-$len); } $tmp_money = strrev($int_money); $strlen = strlen($tmp_money); for ($i = 3; $i < $strlen; $i += 3) { $format_money .= substr($tmp_money,3).','; $tmp_money = substr($tmp_money,3); } $format_money .= $tmp_money; $format_money = strrev($format_money); return $sign.$negative.$format_money.$decimal; }

以上就是本文的全部内容,希望大家能够喜欢。

原文链接:https://www.f2er.com/php/22728.html

猜你在找的PHP相关文章