繁体   English   中英

警告:在Opencart 1.5.5.1中被零除

[英]Warning: Division by zero in Opencart 1.5.5.1

收到此错误:在第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,但没有。 我该如何解决?

替换下面的代码行而不是您的it代码行,然后进行检查。

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM