Warning: number_format()......問題

2016-07-07 15:17 来源:www.chinab4c.com 作者:ecshop专家

會員要結帳時在http://slim.idv.tw/flow.php?step=checkout這個頁面上面會出現如下的錯誤,雖然可以正確完成結帳,可是顯示出來總是怪怪的,請問大家該如何解決,感謝~

Warning: number_format() expects parameter 1 to be double, string given in /home/slimidvt/public_html/includes/lib_common.php on line 959

Warning: number_format() expects parameter 1 to be double, string given in /home/slimidvt/public_html/includes/lib_common.php on line 959

Warning: number_format() expects parameter 1 to be double, string given in /home/slimidvt/public_html/includes/lib_common.php on line 959

回答:
嗯,这是什么问题,看不懂帮顶吧

将includes\lib_common.php 的957~959行:
else
{
$price = number_format($price, 2, '.', '');
}

修改为

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

即可。原因是配送插件里面的免费额度为0,ec本身的bug导致了$price的值为空值,直接调用number_format出现了错误。

哦,不明白。




www.zgfzr.com




感謝您~按照您的方式已經好了~