php number_format金钱 价格 格式处理 由分单位转换成元(保留2为小数)
程序员文章站
2022-04-29 21:00:30
/** * priceFormat * 价格格式处理 * * @access public * @param null * @since 1.0 * @return object */ if(!function_exists('priceFormat')) { function priceForma... ......
/**
* 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
上一篇: 蔬菜品种大全,让你意想不到