1
我使用Zend_Mail_Storage_Imap從我的帳戶獲取郵件,該功能工作正常,但..我怎樣才能限制結果顯示和準備分頁?PHP Zend_Mail_Storage_Imap限制消息
$mail = new Zend_Mail_Storage_Imap(array('host' => 'example.com',
'user' => 'test',
'password' => 'test'));
foreach ($mail as $message) {
echo "Mail from '{$message->from}': {$message->subject}\n";
}
謝謝,這就是我要找的! –