获取此错误:在第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,但我没有。 我该如何解决?
答案 0 :(得分:1)
替换下面的代码行而不是代码行&然后检查一下。
'saving' => $subresult['price'] == 0 ? 100 : round((($subresult['price'] - $subresult['special'])/$subresult['price'])*100, 0),