如何在不打开新连接的情况下迭代所有 PHP Imap 文件夹

发布于 2024-10-29 08:04:02 字数 352 浏览 5 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情独悲 2024-11-05 08:04:02

请参阅 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()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文