A5下载 - 努力做内容最丰富最安全的下载站!

A5站长下载站

当前位置:A5下载 > 源码技巧 > Ecshop > ecshop配送方式出错lib_common.php on line 959

ecshop配送方式出错lib_common.php on line 959

时间:2015-11-09 14:46作者:fang人气:44

ecshop只带的配送方式BUG

只要不是正式商业版的ECSHOP都会出现 配送方式配置出错。提示

Warning: number_format() expects parameter 1 to be double, string given in D:**lib_common.php on line 959

Warning: number_format() expects parameter 1 to be double, string given in D:**lib_common.php on line 959

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

修改:

将includeslib_common.php 的957~959行:

else

{

$price = number_format($price, 2, '.', '');

}

修改为

else

{

if(!$price){

$price = 0;

}

$price = number_format

以上就是本文章的内容,希望对大家有所帮助。

标签ecshop,配送,方式,出错,lib,common.php

相关下载

查看所有评论+

网友评论

网友
您的评论需要经过审核才能显示

公众号