如何以及何时使用“ALL”在 imap_search 中

发布于 2024-10-02 17:58:59 字数 356 浏览 2 评论 0原文

我正在使用 PHP 学习 IMAP。
现在,我正在学习 imap_search 函数。

我对 ALL 标准有具体疑问。

我这样使用它:

$emails = imap_search ( $mailbox, 'BODY "lamaran"' );
$emails = imap_search ( $mailbox, 'ALL BODY "lamaran"' );

我使用两条线得到了相同的结果。

我的问题是:

  • 我做错了吗?
  • 如果错误,使用 ALL 的正确方法是什么?

I'm on my way learning IMAP using PHP.
Right now, I'm learning imap_search function.

I have question specifically on ALL criteria.

I'm using it like this:

$emails = imap_search ( $mailbox, 'BODY "lamaran"' );
$emails = imap_search ( $mailbox, 'ALL BODY "lamaran"' );

I got the same result using both line.

My Question is:

  • Am I doing it wrong?
  • If it's wrong, what is the proper way of using ALL?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

擦肩而过的背影 2024-10-09 17:58:59

作为 IMAP SEARCH 标准,ALL 基本上是无操作。一般来说,您不会想使用它,除非它是您唯一的标准并且您希望搜索返回所选邮箱中的所有项目。这不是玩笑:

A001 UID SEARCH ALL

将以比以下更简洁的格式列出邮箱中所有邮件的 UID

A002 FETCH 1:* (UID)

ALL is basically a no-op as an IMAP SEARCH criterion. In general, you won't want to use it unless it's your only criterion and you want your search to return all the items in the selected mailbox. That's not a joke:

A001 UID SEARCH ALL

will list the UIDs of all the messages in the mailbox in a much more concise format than

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