PHP - imap_utf8() 函数



PHP−IMAP 函数可帮助您访问电子邮件帐户,IMAP 代表Internet Mail Access Protocol,使用这些函数您还可以使用 NNTP、POP3 协议和本地邮箱访问方法。

imap_utf8() 函数接受 MIME 编码字符串作为参数并将其解码为 UTF-8。

语法

imap_utf8($txt);

参数

序号 参数和描述
1

txt(必填)

这是一个字符串值,表示 MIME 编码字符串。

返回值

此函数返回一个字符串值,其中包含给定字符串的 UTF-8 值。

PHP 版本

此函数首次在 PHP 版本 4 中引入,并在所有后续版本中均有效。

示例

以下示例演示了imap_utf8() 函数的使用。

<html>
   <body>
      <?php
         $mime_encoded = 'example: =?UTF-8?B?UHLDvGZ1bmcgUHLDvGZ1bmc=?=';
         $res = imap_utf8($mime_encoded);
         print($res);
         print("<br>");
		
         $mime_encoded = 'test =?ISO-8859-1?Q?Schl=FCter?=';
         $res = imap_utf8($mime_encoded);
         print($res);
      ?>
   </body>
</html>

输出

这将生成以下输出:

example: Prüfung Prüfung
test Schlüter
php_function_reference.htm
广告