织梦系统升级到PHP7后有时打开页面会出现如下提示:“Fatal error: 'continue' not in the 'loop' or 'switch' context in H:wwwincludecommon.func.php on line 49”,显示在“common.func.php”文件的第49行出现了错误,我们定位到这个文件出错的地方看一下代码如下:
Fatal error: 'continue' not in the 'loop' or 'switch' context in /dedecms/include/common.func.php on line 49
找到
include/common.func.php 第49行
if (isset($_helpers[$helpers])) { continue; }
修改成
if (isset($_helpers[$helpers])) { return; }
如对本文有疑问,请提交到交流论坛,广大热心网友会为你解答!! 点击进入论坛