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_header()用法及代码示例
- PHP imap_headers()用法及代码示例
- PHP imap_getsubscribed()用法及代码示例
- PHP imap_last_error()用法及代码示例
- PHP imap_mutf7_to_utf8()用法及代码示例
- PHP imap_lsub()用法及代码示例
- PHP imap_createmailbox()用法及代码示例
- PHP imap_fetchtext()用法及代码示例
- PHP imap_listmailbox()用法及代码示例
- PHP imap_timeout()用法及代码示例
- PHP imap_num_msg()用法及代码示例
- PHP imap_undelete()用法及代码示例
- PHP imap_mail_move()用法及代码示例
- PHP imap_status()用法及代码示例
- PHP imap_utf8_to_mutf7()用法及代码示例
- PHP imap_clearflag_full()用法及代码示例
- PHP imap_base64()用法及代码示例
- PHP imap_close()用法及代码示例
- PHP imap_listscan()用法及代码示例
- PHP imap_mail()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - imap_headerinfo() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。