Home >php教程 >php手册 >ecshop商品页面提示Warning: Division by zero in解决方法

ecshop商品页面提示Warning: Division by zero in解决方法

WBOY
WBOYOriginal
2016-06-06 20:13:471314browse

ecshop部分模板使用时,会出现“Warning: Division by zero inlib_goods.php”错误,原因在错误页面指定行数存在参数为0,计算错误。 解决方法:(适合小米模板、WAP模板、京东模板等) 打开includes/ lbi_goods.php文件 找到代码:$goods[$idx]['zhekou']?=?

ecshop部分模板使用时,会出现“Warning: Division by zero in…lib_goods.php”错误,原因在错误页面指定行数存在参数为0,计算错误。

解决方法:(适合小米模板、WAP模板、京东模板等)

打开includes/ lbi_goods.php文件
找到代码:$goods[$idx]['zhekou']?=?round(($row['promote_price']/$row['market_price'])*100);
这个的上面加上代码:
if($row['market_price']?==?0){
$row['market_price']?=?1;
}

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn