我们把织梦切换成PHP7以上,会发现有错误提示 提示The each() function is deprecated.
下面提供下报错的解决方法
Deprecated:The each() function is deprecated.This message will be suppressed on further calls in
在使用PHP7+环境下,织梦的旧版本程序里会员模块或者第三方插件中XSS过滤函数里有个上图的each()报错提示,
这是因为php7+以上版本抛弃了each函数导致,我们来纠正即可
打开报错提示文件对应的 on line 行数
把
while (list($key) = each($val))
改成
foreach ($val as $key => $value)
完成