如何在不打开新连接的情况下迭代所有 PHP Imap 文件夹
我正在尝试使用 PHP Imap Library
搜索整个收件箱,使用 imap_search()
我正在使用 imap_open() 打开每个文件夹的流,但是问题是像 hotmail 这样的服务器会在 6 或 7 次尝试后阻止您,所以我需要能够在不打开新连接流的情况下切换文件夹。
这是我用于连接到每个文件夹的当前代码。
$server 是这样的
$server = '{imap.gmail.com:993/ssl}INBOX';
if($connection = imap_open($server,$login,$password))
I'm trying to search through my entire inbox with the PHP Imap Library
, using imap_search()
I am using imap_open() to open the stream for each folder, but the issue is that servers like hotmail block you after 6 or 7 tries, so I need to be able to switch through folders without opening a new connection stream.
This is the current code I use to connect to each folder.
$server is something like
$server = '{imap.gmail.com:993/ssl}INBOX';
if($connection = imap_open($server,$login,$password))
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅 imap_reopen()
更新:您可能还对 < a href="http://www.php.net/manual/en/function.imap-list.php" rel="nofollow">imap_list()
See imap_reopen()
Update: You may also be interested in imap_list()