当我执行我的脚本时出现问题并引发异常,而不是停止所有脚本。我怎样才能告诉 zend 继续?
当我获取邮件时出现此错误我有一个 try catch 块但它没有捕获。
Fatal error: Uncaught exception 'Zend\Mail\Exception\RuntimeException' with message 'Line "X-Assp-Message/IP-Score:
谢谢。
我的代码是一个简单的类来获取邮件:
$listm = new Zend\Mail\Storage\Pop3(array('host' => $this->mServer,'user' => $this->mMail, 'password' => $this->mPassword));
foreach ($listm as $msgp3)
{
try
{
e($msgp3->from);
e($msgp3->to);
e($msgp3->subject);
e($msgp3->date);
e(strtotime($msgp3->date));
e($msgp3->messageid);
} catch (Exception $e) {
e($e->getMessage());
}
}
而且我的代码在 10em 邮件处停止,那么如何告诉 Zend 不会停止呢?