gpt4 book ai didi

php - phpinfo的error_reporting 22527中的22527是什么

转载 作者:IT王子 更新时间:2023-10-29 00:53:23 24 4
gpt4 key购买 nike

在我的本地开发环境中,我使用 PHP 版本 5.3.3-1ubuntu9.2。

现在当我看到 error_reporting 时,值是 22527。

什么是 22527?

我检查了http://www.php.net/manual/en/errorfunc.constants.php , 但我找不到号码。

谁能告诉我这是什么?

是否需要改成E_ALL | E_STRICT ?

提前致谢。

最佳答案

这个值实际上是bitmap mask , 常数之和。

所以,22527 是

  16384 E_USER_DEPRECATED
+
4096 E_RECOVERABLE_ERROR
+
etc...

在您的情况下,它是 E_ALL & ~E_DEPRECATED,它将显示除 E_DEPRECATED 之外的所有错误。

低于 5.4 的 PHP 版本也将排除 E_STRICT 错误(因为该版本之前的 E_ALL 中不包含 E_STRICT)

关于php - phpinfo的error_reporting 22527中的22527是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4678082/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com