本帖最后由 培土生金 于 2023-2-20 12:06 编辑
用的pbootcms,今天忽然发现产品列表页打不开, 提示 :程序运行异常: Modulo by zero,位置:/home/wwwroot/www./core/function/helper.php,第838行。。这里是第8行
- function compareSymbol2($str){
- $res = null;
- $symbol2 = ['%'];
- foreach ($symbol2 as $items) {
- if (strpos($str, $items) !== false) {
- $arr = explode($items, $str);
- if ($items == '%') {
- $res = $arr[0] % $arr[1];
- }
- break;
- }
- }
- if($res === null) {
- $str = trim($str);
- $str = trim($str,"'");
- $res = (string)$str;
- }
- return $res;
- }
复制代码
其余栏目页面都正常,php版本,伪静态规则等都对,是不是什么组件和环境的问题
|
|