警告:在Opencart 1.5.5.1中除以零

时间:2014-10-11 12:49:40

标签: php opencart

获取此错误:在第135行的/home/xxxxxx/domains/onlineshop.ge/public_html/catalog/controller/module/lpbc.php中除以零

第135行

我有这个代码用于保存百分比:

'saving'    => round((($subresult['price'] - $subresult['special'])/$subresult['price'])*100, 0),

似乎某些产品的价格为0.00,但我没有。 我该如何解决?

1 个答案:

答案 0 :(得分:1)

替换下面的代码行而不是代码行&然后检查一下。

'saving'    => $subresult['price'] == 0 ? 100 : round((($subresult['price'] - $subresult['special'])/$subresult['price'])*100, 0),