=?邮件主题中的 ISO-8859-1
我通过 PHP 及其方法 imap_open 获取我的 GMail 帐户中的未读邮件
当我通过方法 imap_fetch_overview 获取主题时,我得到一些如下主题
=?ISO-8859-1?Q?Informaci=F3n_Apartamento_a_la_Venta?= =?ISO-8859-1?Q?_en_Benasque(Demandas:_0442_______)?=
:不可读,我认为是因为它的字符编码。
我应该怎么做才能使其可读?
I'm acquiring the unread mails I have in my GMail account through PHP and its method imap_open
When I get the subjects through the method imap_fetch_overview I get some subjects like this:
=?ISO-8859-1?Q?Informaci=F3n_Apartamento_a_la_Venta?= =?ISO-8859-1?Q?_en_Benasque(Demandas:_0442_______)?=
It's unreadable, I think because of its character encoding.
What should I do to make it readable?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要获取 UTF-8 格式的字符串,请执行:
给出:
然后您可以
To get the string in UTF-8, do:
which gives:
You can then convert to ISO-8859-1, if you wish.
它对我有用(感谢 artefacto)
it works for me (thanks artefacto)