PHP - imap_rfc822_parse_adrlist() 函数



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

imap_rfc822_parse_adrlist() 函数接受两个字符串值(地址和默认主机名)作为参数,并解析给定的地址字符串。

语法

imap_rfc822_parse_adrlist($address, $default_host);

参数

序号 参数及描述
1

address (必填)

这是一个表示地址的字符串值。

2

default_host (必填)

这是一个表示默认主机名的字符串值。

返回值

此函数返回一个包含已解析值的数组对象。

PHP 版本

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

示例

以下示例演示了 imap_rfc822_parse_adrlist() 函数的用法:

<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>");
		 
         //Parsing a string address	 
         print("Parsing string address: "."<br>");
         $addr_str = "Sender <[email protected]>, [email protected], root";
         $res = imap_rfc822_parse_adrlist($addr_str, "default_host");
         print_r($res);
    
         //Closing the connection
         imap_close($imap);   
      ?>
   </body>
</html>

输出

这将生成以下输出:

Connection established....
Parsing string address:
Array ( 
   [0] => stdClass Object ( 
      [mailbox] => sender [host] => test.com [personal] => Sender 
   ) 
   [1] => stdClass Object ( 
      [mailbox] => CC [host] => test.com 
   ) 
   [2] => stdClass Object ( 
      [mailbox] => root [host] => default_host 
   ) 
)

示例

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

<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>");
         
         //Parsing a string address	 
         print("Parsing string address: "."<br>");
         $addr_str = "Sender <[email protected]>, [email protected], root";
         $res = imap_rfc822_parse_adrlist($addr_str, "default_host");
         foreach ($res as  $val) {
         print($val -> mailbox);
            print("<br>");
            print($val -> host);
            print("<br>");
         }
         //Closing the connection
         imap_close($imap);   
      ?>
   </body>
</html>

输出

这将生成以下输出:

Connection established....
Parsing string address:
sender
test.com
CC
test.com
root
default_host
php_function_reference.htm
广告