VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php number_format金钱 价格 格式处理 由分单位转换成元(保留2为小数)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
 * priceFormat
 * 价格格式处理
 *
 * @access public
 * @param  null
 * @since 1.0
 * @return object
 */
if(!function_exists('priceFormat')) {
    function priceFormat($price)
    {
 
       return number_format($price/100,2);
    }
}
 
 
number_format(需要转换的数字,保留小数个数,小数点符号,每三位的分隔符)
echo number_format("1000000")."<br>"//默认显示:1,000,000
echo number_format("1000000",2)."<br>";//默认显示:1,000,000.00
echo number_format("1000000",2,".",""); //自定义显示:1000000.00

  

作者:子钦加油
出处:https://www.cnblogs.com/zmdComeOn/

相关教程