我正在尝试使用IMAP类的PHP通过我的邮箱获取电子邮件。因为,消息的数量以千计,脚本执行的时间太长。
有没有办法可以批量检索每条消息100条消息。
另外,我如何唯一地识别消息。是 * message_id * 还是 UID ?在 imap_fetch_overview()
中/* grab emails */
$emails = imap_search($inbox,'ALL');
/* if emails are returned, cycle through each... */
if($emails) {
/* begin output var */
$output = '';
/* put the newest emails on top */
rsort($emails);
/* for every email... */
foreach($emails as $email_number) {
/* get information specific to this email */
$overview = imap_fetch_overview($inbox,$email_number,0);
$message = imap_fetchbody($inbox,$email_number,2);
/* output the email header information */
$output.= '<div class="toggler '.($overview[0]->seen ? 'read' : 'unread').'">';
$output.= '<span class="subject">'.$overview[0]->subject.'</span> ';
$output.= '<span class="from">'.$overview[0]->from.'</span>';
$output.= '<span class="date">on '.$overview[0]->date.'</span>';
$output.= '</div>';
/* output the email body */
$output.= '<div class="body">'.$message.'</div>';
}
echo $output;
}
答案 0 :(得分:0)
首先,我认为message_id
是邮件的唯一标识符,UID
仅在邮箱中唯一。
至于表现。我最好的猜测是for循环是慢的。 for循环为您的数千封邮件提取整个邮件正文。
您可以将imap_search
限制为使用ON <date>
或UNSEEN
,有关您可以在那里使用的详细信息,请参阅here。
或者您可以重写循环,这样您只需使用常规for循环一次处理100条消息。