PHP - imap_fetchmime() 函数



PHP 的 IMAP 函数帮助您访问电子邮件帐户,IMAP 代表 **I**nternet **M**ail **A**ccess **P**rotocol,使用这些函数,您还可以使用 NNTP、POP3 协议和本地邮箱访问方法。

imap_fetchmime() 函数接受表示 IMAP 流的资源值、表示邮箱中邮件的整数值和包含邮件部分编号(用“.”分隔)的字符串值作为参数,并检索邮件正文指定部分的 MIME 头。

语法

imap_fetchmime($imap_stream, $msg, $section[, $options]);

参数

选项(可选)

这是一个可选参数,可以是以下一个或多个:

  • FT_UID

  • FT_PEEK

  • FT_INTERNAL

序号 参数及说明
1

imap_stream(必填)

这是一个字符串值,表示 IMAP 流,是 imap_open() 函数的返回值。

2

msg(必填)

这是一个整数值,表示要标记为删除的消息/邮件编号。

3

section(必填)

这是一个字符串值,表示消息编号(用“.”分隔)。

返回值

此函数返回一个包含检索到的 MIME 头的字符串值。

PHP 版本

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

示例

以下示例演示了 imap_fetchmime() 函数的使用:

<html>
   <body>
      <?php
         //Establishing connection
         $url = "{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX";
         $id = "[email protected]";
         $pwd = "cohondob_123";
         $imap = imap_open($url, $id, $pwd);
         print("Connection established...."."<br>");
		 
         //Fetching the contents of a message
         print("Mime Headers: "."<br>");
         $body = imap_fetchmime($imap, 1, 1);
         print_r($body);
    
         //Closing the connection
         imap_close($imap);   
      ?>
   </body>
</html>

输出

以下是一个函数示例:

Connection established....
Mime Headers:
Content−Type: text/plain; charset="UTF-8"

示例

<html>
   <body>
      <?php
         //Establishing connection
         $url = "{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX";
         $id = "[email protected]";
         $pwd = "cohondob_123";
         $imap = imap_open($url, $id, $pwd);
         print("Connection established...."."<br>");
         //Searching emails
         $emailData = imap_search($imap, '');
        
         if (! empty($emailData)) {  
            foreach ($emailData as $msg) {
               $msg = imap_fetchmime($imap, $msg, "1");
               print($msg."<br>");      			   
            }    
         } 
         //Closing the connection
         imap_close($imap);   
      ?>
   </body>
</html>

输出

这将生成以下输出:

Connection established....
Content-Type: text/plain; charset="UTF-8"
Content-Type: text/plain; charset="UTF-8"
Content-Type: text/plain; charset="UTF-8"
Content-Type: text/plain; charset="UTF-8"
Content-Type: text/plain; charset="UTF-8"
Content-Type: text/plain; charset="UTF-8"
Content-Type: text/plain; charset="UTF-8"

示例

以下是此函数的另一个示例:

示例

以下是使用可选参数的上述函数示例:

<html>
   <body>
      <?php
         //Establishing connection
         $url = "{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX";
         $id = "[email protected]";
         $pwd = "cohondob_123";
         $imap = imap_open($url, $id, $pwd);
         print("Connection established...."."<br>");
		 
         //Fetching the contents of a message
         print("Mime Headers: "."<br>");
         $body = imap_fetchmime($imap, imap_uid($imap, 1), 1, FT_UID);
         print_r($body);
    
         //Closing the connection
         imap_close($imap);   
      ?>
   </body>
</html>

输出

这将生成以下输出:

Connection established....
Mime Headers:
Content-Type: text/plain; charset="UTF-8"
php_function_reference.htm
广告