如何以及何时使用“ALL”在 imap_search 中
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
作为 IMAP
SEARCH
标准,ALL
基本上是无操作。一般来说,您不会想使用它,除非它是您唯一的标准并且您希望搜索返回所选邮箱中的所有项目。这不是玩笑:将以比以下更简洁的格式列出邮箱中所有邮件的 UID
ALL
is basically a no-op as an IMAPSEARCH
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:will list the UIDs of all the messages in the mailbox in a much more concise format than