當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP imap_headerinfo()用法及代碼示例



PHP-IMAP 函數可幫助您訪問電子郵件帳戶,IMAP 代表I互聯網M艾爾A訪問權限Protocol 使用這些函數您還可以使用 NNTP、POP3 協議和本地郵箱訪問方法。

這個imap_headerinfo()函數接受表示 IMAP 流的資源值、表示特定消息的整數值作為參數,並讀取指定消息的標頭。

用法

imap_headerinfo($imap_stream ,$msg [,fromlength, $subjectlength, $defaulthost]);

參數

Sr.No 參數及說明
1

imap_stream (Mandatory)

這是一個表示 IMAP 流的字符串值,返回值imap_open()函數。

2

msg (Mandatory)

這是一個表示消息/郵件編號的整數值。

3

fromlength (Optional)

這是一個整數值,表示 fetchfrom 屬性的長度。

4

subjectlength (Optional)

這是一個整數值,表示 fetchsubject 屬性的長度。

返回值

此函數在成功的情況下返回一個表示指定消息標題的對象,在失敗的情況下返回一個布爾值,該值為 FALSE。

PHP版本

這個函數最初是在 PHP 版本 4 中引入的,並且適用於所有後續版本。

示例

下麵的例子演示了imap_headerinfo()函數 -

<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 headers of all messages		 
         print("Headers of all messages:"."<br>");
         $res = imap_headerinfo($imap, 2);	
         print_r($res);		     
         //Closing the connection
         imap_close($imap);   
      ?>
   </body>
</html>

輸出

這將生成以下輸出 -

Connection established....
Headers of all messages:
stdClass Object ( [date] => Thu, 22 Oct 2020 20:10:52 +0530 [Date] => Thu, 
22 Oct 2020 20:10:52 +0530 [message_id] => [toaddress] => 
tutorialspoint.test@gmail.com [to] => Array ( [0] => stdClass Object ( 
[mailbox] => tutorialspoint.test [host] => gmail.com ) ) [fromaddress] =>
Sender [from] => Array ( [0] => stdClass Object ( [personal] => Sender 
[mailbox] => sample.test[host] => gmail.com ) ) [reply_toaddress] => 
Sender [reply_to] => Array ( [0] => stdClass Object ( [personal] => 
Sender [mailbox] => sample.test[host] => gmail.com ) ) [senderaddress] =>
Sender [sender] => Array ( [0] => stdClass Object ( [personal] => Sender 
[mailbox] => sample.test[host] => gmail.com ) ) [Recent] => [Unseen] =
> U [Flagged] => [Answered] => [Deleted] => [Draft] => [Msgno] =
> 2 [MailDate] => 22-Oct-2020 14:41:31 +0000 [Size] => 4858 [udate] =>
1603377691 )

示例

以下是上述函數的另一個例子 -

<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 headers of all messages		 
         print("Headers of all messages:"."<br>");
            
         for($i=1; $i<=imap_num_msg($imap); $i++) {
         $res = imap_headerinfo($imap, $i);
            print($res->toaddress);
            print("<br>");
            print($res->fromaddress);
            print("<br>");
            print($res->date);
            print("<br>");
            print($res->Size);	
            print("<br>");	
            print("<br>");		  
         }
         //Closing the connection
         imap_close($imap);   
      ?>
   </body>
</html>

輸出

這將生成以下輸出 -

Connection established....
Headers of all messages:
tutorialspoint.test@gmail.com
Sender
Thu, 22 Oct 2020 20:10:17 +0530
4857

tutorialspoint.test@gmail.com
Sender
Thu, 22 Oct 2020 20:10:52 +0530
4858

tutorialspoint.test@gmail.com
Sender
Sun, 25 Oct 2020 16:11:22 +0530
4880

tutorialspoint.test@gmail.com
Sender
Sun, 25 Oct 2020 17:22:41 +0530
4882

tutorialspoint.test@gmail.com
Sender
Sun, 25 Oct 2020 17:23:10 +0530
4884

tutorialspoint.test@gmail.com
Sender
Sun, 25 Oct 2020 17:24:25 +0530
4883

tutorialspoint.test@gmail.com
Sender
Mon, 26 Oct 2020 12:31:14 +0530
4888

相關用法


注:本文由純淨天空篩選整理自 PHP - imap_headerinfo() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。