关于eval报错的问题,求大神指点迷津啊!!!

2016-07-07 16:03 来源:www.chinab4c.com 作者:ecshop专家

错误信息:Warning: Division by zero in D:\qs_ftp\TestDEV\includes\cls_template.php(1161) : eval()'d code on line 564


1158 function _eval($content)
1159{
1160ob_start();
1161 eval('?' . '>' . trim($content));
1162$content = ob_get_contents();
1163ob_end_clean();
1164
1165return $content;
1166 }

回答:
我也遇见这错误了,也琢磨了很长时间啊,我的错误是在后台点击打印订单的时候出现的这个错误,最后是在data里的order_print.html文件发现了问题,在合计金额的时候这个代码{if $order.order_pre_account > 0}{$order.formated_order_pre_account}{/if}的问题,原来的那个大于号用的>写的,就报错了,改成正常的>号就好了,不知道能不能给你点帮助

我也遇见这错误了,也琢磨了很长时间啊