在 zend 框架中设置自定义错误级别

发布于 2024-09-19 13:17:13 字数 69 浏览 4 评论 0原文

如何使用 Zend Framework 设置自定义错误级别 - 比如说,我想禁用 E_NOTICE。

谢谢。

How can I set custom error levels with Zend Framework - say, I want to disable E_NOTICE.

Thanks.

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

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

发布评论

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

评论(3

别念他 2024-09-26 13:17:13

如果您使用的是 Zend_Application 请将以下行放入您的 application.ini

phpsettings.error_reporting = E_ALL & ~E_NOTICE

您还可以在引导程序中使用 error_reporting() ,如下所示

error_reporting(E_ALL & ~E_NOTICE);

:报告级别记录在 PHP 手册中。

If you are using Zend_Application put the following line into your application.ini

phpsettings.error_reporting = E_ALL & ~E_NOTICE

You can also use error_reporting() in your bootstrap like so:

error_reporting(E_ALL & ~E_NOTICE);

The error reporting levels a documented in the PHP manual.

久随 2024-09-26 13:17:13

在 application.ini 中,这有效:

phpSettings.error_reporting = E_ALL^E_NOTICE

这不起作用:

phpSettings.error_reporting = "E_ALL^E_NOTICE"

In application.ini, this works:

phpSettings.error_reporting = E_ALL^E_NOTICE

This won't work:

phpSettings.error_reporting = "E_ALL^E_NOTICE"
自在安然 2024-09-26 13:17:13

ZF 1.11,应用程序.ini。

这有效:

phpSettings.error_reporting = E_ALL ^ E_NOTICE

这不起作用:

phpSettings.error_reporting = E_ALL^E_NOTICE
phpSettings.error_reporting = "E_ALL^E_NOTICE"

ZF 1.11, application.ini.

This works:

phpSettings.error_reporting = E_ALL ^ E_NOTICE

This won't work:

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