我正在使用
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结果.请问如何沉默?
我补充道
原文链接:https://www.f2er.com/php/133694.html$this->maruBox=@imap_open($this->server,$this->password); imap_errors(); imap_alerts();
和imap_errors();和imap_alerts();做魔术:)