According to the notes in the php.ini file, E_ALL *does* include E_STRICT; to exclude it you would use E_ALL & ~E_STRICT
This may be useful for someone who has upgraded and kept their old php.ini
自 PHP 5 起引进了新常量 E_STRICT
,其值为
2048
。它提供了对用户代码的协同性和向前兼容性的运行时 PHP
建议,有助于使用户保持最新和最好的编程风格。例如在使用已过时的函数时
STRICT 信息会提出警告。
Note:
E_ALL
不包括E_STRICT
,因此其默认未激活。你必需明确设置错误级别包括E_STRICT
来查看这些信息。
更多信息请参阅 预定义常量。