test.php 文件内容如下:
<?php
$arr = [];
var_dump($arr['pay-ip']);
然后通过不同的 PHP 版本去允许该代码:
root@iZuf67mcw0tro6podzt9fcZ:~# /www/server/php/74/bin/php /www/wwwroot/themes.example.com/test.php
NULL
root@iZuf67mcw0tro6podzt9fcZ:~# /www/server/php/83/bin/php /www/wwwroot/themes.example.com/test.php
PHP Warning: Undefined array key "pay-ip" in /www/wwwroot/themes.example.com/test.php on line 3
Warning: Undefined array key "pay-ip" in /www/wwwroot/themes.example.com/test.php on line 3
NULL
root@iZuf67mcw0tro6podzt9fcZ:~#
一:运行的 test.php 代码是一样的 二:PHP7 没有警告信息,PHP8 有警告信息 三:PHP7 与 PHP8 的 php.ini 在以下两个参数的配置一致
display_errors = On
error_reporting = E_ALL & ~E_NOTICE
为啥 PHP8 报警告而 PHP7 没有报?是不是 php.ini 还有哪些参数影响了?还是说 PHP8 的报错处理机制改变了?有相关的参考链接可以看看吗?
1
ysc3839 193 天前 1
你的目的是什么?是想使用 PHP7 的时候也能报错方便调试吗?
如果只是为了消除警告,在 $arr 前面加上 @ 就好了,比如 var_dump(@$arr['pay-ip']); |
2
maigebaoer 193 天前 via Android 1
https://github.com/php/php-src/issues/8906 PHP 7 和 8 的报错等级变更问题
|
3
jianchang512 193 天前 2
https://www.php.net/manual/zh/migration80.incompatible.php
8.0 就改变了。 ``` 一些通知已转换为警告: 尝试读取未定义的变量。 尝试读取未定义的属性。 尝试读取未定义的数组 key 。 尝试读取非对象的属性。 尝试读取非数组的数组索引。 尝试转换数组为字符串。 尝试使用资源作为数组 key 。 尝试使用 null 、bool 、float 作为字符串 offset 。 尝试读取越界的字符串 offset 。 尝试将空字符串分配给字符串 offset 。 ``` |
5
xlinux OP |
6
xlinux OP @maigebaoer 懂了,原来 undefined array key 在 PHP7 报错等级是 E_NOTICE ,在 PHP8 中等级变成 E_WARNING ,又因为 php.ini 的 error_reporting 配置为 E_ALL & ~E_NOTICE ,所以在报错信息在这两个不同版本有了不同的处理。
|
7
NewYear 193 天前
php 最烦的就是调试,同样的错误级别,有时候页面 500 ,什么信息都不输出,完全不知道哪里出问题……
|