PHP - imap_msgno() 函数



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

imap_msgno() 函数接受表示 IMAP 流的资源值和表示邮件 UID 的整数值作为参数,并检索对应于给定 UID 的邮件的序列号。

语法

imap_msgno($imap_stream, $uid);

参数

序号 参数和描述
1

imap_stream(必填)

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

2

uid(必填)

这是一个整数值。

Explore our latest online courses and learn new skills at your own pace. Enroll and become a certified expert to boost your career.

返回值

此函数返回一个整数值,表示邮件序列号。

PHP 版本

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

示例

<html>
   <body>
      <?php
         //Establishing connection
         $url = "{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX";
         $id = "tutorialspoint.test@gmail.com";
         $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);
         print("<br>");

         //Retrieving the message number
         $msg = imap_msgno($imap, $UID);
         print($msg); 		 
         //Closing the connection
         imap_close($imap);   
      ?>
   </body>
</html>

输出

这将生成以下输出:

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

示例

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

<html>
   <body>
      <?php
         //Establishing connection
         $url = "{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX";
         $id = "tutorialspoint.test@gmail.com";
         $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);
         print("<br>");

         //Retrieving the message number
         $msg = imap_msgno($imap, $UID);
         print($msg);
		   
         $emailData = imap_search($imap, '');
         foreach ($emailData as $msg) {
            $msg = imap_msgno($imap, imap_uid($imap, $msg));
            print($msg);
            print("<br>");
         }    
         //Closing the connection
         imap_close($imap);   
      ?>
   </body>
</html>

输出

这将生成以下输出:

Connection established....
UID of the 1st message: 19
11
2
3
4
5
6
7
php_function_reference.htm
广告