消除 PHP 中 error_log 中的 DEPRECATED 错误
是否可以从 PHP error_log 中删除 DEPRECATED 消息?
我知道我可以使用
~E_DEPRECATED
它们来阻止它们显示,但是有什么方法可以让它们远离 error_log 吗?
Is it possible to eliminate DEPRECATED messages from the PHP error_log?
I know I can use
~E_DEPRECATED
to keep them from the display but is there any way to keep them out of the error_log as well?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可能是一个错误: http://bugs.php.net/bug.php? id=48843
将该消息保留在日志之外的正确方法是替换已弃用的代码:)
This may be a bug: http://bugs.php.net/bug.php?id=48843
The right way to keep that message out of your logs is to replace the deprecated code :)