PHP - imap_uid() 函数



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

**imap_uid()** 函数接受一个表示 IMAP 流的资源值,一个表示邮箱中邮件的整数值作为参数,并返回给定邮件的 UID。

语法

imap_uid($imap_stream, $msg);

参数

序号 参数和描述
1

imap_stream (必填)

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

2

msg (必填)

这是一个整数值,表示邮件/邮件编号,即将被标记为删除。

返回值

此函数返回一个整数值,表示指定邮件的 UID。

PHP 版本

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

示例

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

<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("UID of the 1st message: ");
         $UID = imap_uid($imap, 1);
         print($UID);
    
         //Closing the connection
         imap_close($imap);   
      ?>
   </body>
</html>

输出

这将生成以下输出:

Connection established....
UID of the 1st message: 19

示例

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

<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) {
               $id = imap_uid($imap, $msg);
               print("UID of message $msg: ");			   
               print($id);  
               print("<br>");						   
            }    
         } 
         //Closing the connection
         imap_close($imap);   
      ?>
   </body>
</html>

输出

这将生成以下输出:

Connection established....
UID of message 1: 19
UID of message 2: 20
UID of message 3: 42
UID of message 4: 49
UID of message 5: 50
UID of message 6: 51
UID of message 7: 52
php_function_reference.htm
广告