Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用imap_fetchheader()检索电子邮件的标题信息。对于某些电子邮件,此消息 ID 为空。但是当我通过网络邮件检查同一封电子邮件时,消息 ID 存在。
imap_fetchheader()
无论如何都可以毫无问题地获取所有标题信息吗?
这里的问题不在于imap_fetchheader(). 电子邮件标题中的消息将如下所示:
<e5d22200ed6ca211cbc1d12de63f1383@192.168.0.25>
我认为,对于某些消息 ID,浏览器将其视为 html 标签并打印。当我使用 htmlentities() ex 转换它时,问题已解决:
htmlentities( imap_fetchheader($conn, "1"))
答案是多么愚蠢……!