ecshop錯誤: Warning: number_format() expects parameter 1 to be double, string given in /includes/lib_common.php on line 974
Ecshop購物車確認頁面出現number_format()錯誤的解決辦法
Warning: number_format() expects parameter 1 to be double,
一般在這種情況
1)PHP版本為5.3.0及以上版本
2)配送方式免費額度為0
下時,才會出現number_format()錯誤提示。
Warning: number_format() expects parameter 1 to be double, string given in /includes/lib_common.php on line 945
那么要如何來解決呢,下面最模板就說一下解決辦法:
在includes/lib_common.php中找到price_format()函數把:
else
{
$price = number_format($price, 2, '.', '');
}
修改為
else
{
$price = $price ? number_format($price, 2, '.', ''):0;
}
新聞熱點
疑難解答