IMAP - 编码UTF-8(IMAP - encoding UTF-8)

2019-10-17 00:07发布

我的脚本不显示波兰字符。 如何解决呢? 谢谢。

<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title></title>
    </head>
    <body>

        <?php
        header('Content-Type: text/html; charset=utf-8');

        $hostname = '{imap.gmail.com:993/imap/ssl}INBOX';
        $username = 'user@gmail.com';
        $password = 'pass';

        $inbox = imap_open($hostname, $username, $password) or die('Cannot connect to Gmail: ' . imap_last_error());


        $emails = imap_search($inbox, 'ALL');

        if ($emails) {
            $output = '';

            foreach ($emails as $email_number) {
                $overview = imap_fetch_overview($inbox, $email_number, 0);
                $message = imap_fetchbody($inbox, $email_number, 2);

                $output.= '<div class="toggler ' . (imap_utf8($overview[0]->seen) ? 'read' : 'unread') . '">';
                $output.= '<span class="subject">' . imap_utf8($overview[0]->subject) . '</span> ';

                $output.= '<span class="from">' . imap_utf8($overview[0]->from) . '</span>';
                $output.= '<span class="date">on ' . imap_utf8($overview[0]->date) . '</span>';
                $output.= '</div>';

                /* output the email body */
                $output.= '<div class="body">' . imap_utf8($message) . '</div>';
            }

            echo $output;
        }
        imap_close($inbox);
        ?>
    </body>
</html>

示例输出:

如果您想了解更多有吸引力的B6li = = = E6看起来B1D您的收件箱POM OC = = B1

我预计:

如果你想调剂您的收件箱

Answer 1:

电子邮件是不是UTF-8(引用),所以imap_utf8不在这里工作了。

但是一个错误早前的是,你不检查其编码用于与电子邮件。

怎么修?

  1. 检查电子邮件/体的编码。
  2. 该转换编码成UTF-8为您展示的目的即可。


Answer 2:

这看起来像引用打印编码。

只需更换您的imap_utf8与quoted_printable_decode和使用的iconv从(大概)上光编码转换为utf8。



文章来源: IMAP - encoding UTF-8