0

我是 php 初学者,我正在研究邮件解析器。为此,我正在查看我在 mailParser 类中编写的 PHP 的 IMAP 函数。

function __construct(){
    $this->stream = imap_open($this->server,$this->username,$this->password) or 
    die('Cannot connect to Gmail'.imap_last_error());
}

当我运行这个时:

function getInboxHeaders(){
    imap_headers($this->stream);
    $tot_msg = imap_num_msg($this->stream);

    for($count=$tot_msg;$count>-1;$count--){
        $header = imap_header($this->stream,$count);
        print_r($header);
    }
 }

为了在我的收件箱中获取邮件的标题,我收到了警告“错误邮件编号”的通知。为什么我在运行此功能时会收到这样的警告?

4

0 回答 0