防止调用 error_reporting() 和/或 ini_set('display_errors', 'On') 覆盖 php.ini 设置

发布于 2024-11-07 23:22:30 字数 422 浏览 0 评论 0 原文

我的 php.ini 文件中有这样的设置:

error_reporting = E_ERROR|E_PARSE|E_CORE_ERROR|E_COMPILE_ERROR

但我仍然每分钟在错误日志中收到数千条“通知”和“警告”条目。我当然意识到我会更好地处理这些错误,但这不是我的代码,我也没有得到报酬来做这件事,我只需要摆脱那些肥胖的 error_log 文件(每天 Gbs)。

我搜索了代码并删除了所有 error_reporting() 调用,这达到了目的,但是有没有办法禁止 error_reporting() 覆盖 php.ini 设置?

我还可以阻止对 ini_set('display_errors') 的调用覆盖 php.ini 设置吗?

I had this setting in my php.ini file:

error_reporting = E_ERROR|E_PARSE|E_CORE_ERROR|E_COMPILE_ERROR

But I was still receiving thousands of NOTICE and WARNING entries in the error log every minute. I of course realize I would better deal with those errors, but this is not my code and I am not being paid to do that, I just needed to get rid of those fat error_log files (Gbs per day).

I searched through the code and removed all error_reporting() calls, and that did the trick but, is there a way to disallow error_reporting() from overriding php.ini settings?

Could I also prevent calls to ini_set('display_errors') from overriding php.ini settings?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

尤怨 2024-11-14 23:22:30

有没有办法禁止 error_reporting() 覆盖 php.ini 设置?

或许。

如果您在 Apache 下使用 mod_php(或通过 FPM 的 FastCGI),则可以使用 < code>php_admin_value 和 php_admin_flag强制某些 INI 设置,使得 ini_set 无法覆盖。

不幸的是,除了 error_reporting rel="nofollow">disable_functions ——但这会在每次使用时抛出 PHP 警告。

(顺便说一句,我觉得奇怪的是,开发人员会在生产中设置错误报告级别,但仍然会生成如此大量的日志。)

is there a way to disallow error_reporting() from overriding php.ini settings?

Maybe.

If you're using mod_php under Apache (or FastCGI via FPM), you can use php_admin_value and php_admin_flag to force certain INI settings in such a way that ini_set will be unable to override.

Unfortunately I don't know of a way to neuter error_reporting other than disable_functions -- but this will throw a PHP Warning every time it's used.

(As a side note, I find it curious that a developer would set an error reporting level in production and still be producing such a high volume of logs.)

緦唸λ蓇 2024-11-14 23:22:30

您可以尝试 disable_functions php.ini 设置并关闭 error_reporting()ini_set()。但这完全禁用了它们,因此如果您需要在运行时更改除 error_reporting 之外的设置,那么您就可以了。

You could try the disable_functions php.ini setting and turn off error_reporting() and ini_set(). But that COMPLETELY disables them, so if you need to change settings other than error_reporting at runtime, you'd be SOL.

世态炎凉 2024-11-14 23:22:30

根据以下页面,PHP 引擎设置可以设置配置选项的时间和位置。无法以编程方式阻止它:

http://www.php。 net/manual/en/configuration.changes.modes.php
http://php.net/manual/en/errorfunc.configuration.php

According to the following pages, the PHP engine sets when and where a configuration option can be set. There is no way to prevent it programmatically:

http://www.php.net/manual/en/configuration.changes.modes.php
http://php.net/manual/en/errorfunc.configuration.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文