- 1.png
- 最近调用网站自动加链接时发现的一个问题,出现了这个错误
- 翻译一下:不推荐使用each()函数。 此消息将在以后不再显示
- 原因:php7.2以上废除了each()方法,项目中用到的地方会出现以下报错
The each() function is deprecated. This message will be suppressed on further calls
- 解决办法,很简单把以下代码
while (list($k,$l) = each($lines)){}
- 2.png
- 更正为
foreach ($lines as $k => $l){}
- 3.png
- 4.png
【php报错The each() function is deprecated. This message will be suppressed on furthe】
qaq卟言2021-04-30 00:01:02
PHP
开始
完结