在PHP、IMAP函数中,下载附件的函数是什么? (即使我们不明确想要下载它们)
在PHP、IMAP函数中,下载附件的函数是什么。 我只想在需要时下载附件。我想节省带宽,但也许某些功能会下载它们以获取其信息或电子邮件的结构? 如果我有一个 2G 的附件,我不想下载它,但仍然想获取电子邮件的其他部分(文本部分、有关电子邮件结构的信息,...)
In PHP, IMAP Functions, what are the functions that download the attached files.
I only want to download attached files if needed. I want to save bandwidth, but maybe some functions download them to get their information, or the structure of the email ?
If I have an attachment of 2G, I don't want to download it, but want all the same to get the other part of the email (text parts, information about the email structure,...)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅
imap_fetchbody
和imap_fetchstruct
。带附件的消息是多部分消息;你可以告诉imap_fetchbody
你想要获取哪一部分。See
imap_fetchbody
andimap_fetchstructure
. Messages with attachments are multi-part messages; you can tellimap_fetchbody
which part you want to fetch.