无法在PHP中沉默imap_open错误通知

前端之家收集整理的这篇文章主要介绍了无法在PHP中沉默imap_open错误通知前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用 PHP 5.3.5并且我正在使用
$this->maruBox=@imap_open($this->server,$this->username,$this->password);

@符号应该使错误报告无声,但它没有,我确信错误发生在这一行.我希望我的应用程序能够识别问题本身并做出反应并且不会出现NOTICE错误,因为我的公司开发策略,我无法关闭整个PHP错误报告.

没有@我得到:

imap_open() [function.imap-open]: Couldn’t open stream {pop3.seznam.cz:110/pop3}INBox
With it i get: Notice Unknown: Authentication Failed (Authentication Failed) (errflg=1)

如果登录信息正常,则打开连接并且不会发生错误.

当imap_open没有设法连接时,我总是收到NOTICE错误,而且它正在弄乱我的JSON结果.请问如何沉默?

我补充道
$this->maruBox=@imap_open($this->server,$this->password);
imap_errors();
imap_alerts();

和imap_errors();和imap_alerts();做魔术:)

原文链接:https://www.f2er.com/php/133694.html

猜你在找的PHP相关文章