关于 number_format() 堕落的几种办理步伐

2016-07-07 14:55 来源:www.chinab4c.com 作者:ecshop专家

关于 number_format() 堕落的几种办理步伐
起首必要 打开 根目次 includes 下的 lib_common.php 文件,找到 962 行 阁下
function price_format 函数的尾部
一. 气象: else 后没有搜查 $price 的
将includes\lib_common.php 的957~959行:
else
{
$price = number_format($price, 2, '.', '');
}
http://wubayulec481.com
http://batiant491.com
http://jinguangds581.com

修改为

else
{
if(!$price){
$price = 0;
}
$price = number_format($price, 2, '.', '');
}

二. 气象:else 后有if判定依然堕落的
将includes\lib_common.php 的957~959行:
else
{
if(!$price){
$price = 0;
}
$price = number_format($price,2,'.','');
}

修改为:

else
{
if(!$price){
$price = 0;
}
$price = number_format(floatval($price),2,'.','');
}

回答:
还行啊 试试

else
{
if(!$price){
$price = 0;
}
$price = number_format(floatval($price),2,'.','');
}