文字

imap_rfc822_parse_headers

(PHP 4, PHP 5, PHP 7)

imap_rfc822_parse_headersParse mail headers from a string

说明

object imap_rfc822_parse_headers ( string $headers [, string $defaulthost = "UNKNOWN" ] )

Gets an object of various header elements, similar to imap_header() .

参数

headers

The parsed headers data

defaulthost

The default host name

返回值

Returns an object similar to the one returned by imap_header() , except for the flags and other properties that come from the IMAP server.

参见

  • imap_rfc822_parse_adrlist() - Parses an address string

用户评论:

[#1] Marco Arment [2010-07-23 09:10:42]

This function will cause a PHP Fatal Error if the text you're passing to it overflows a 16 KB buffer internally (SENDBUFLEN in the source).

I haven't looked into it in depth yet, but limiting the input text to less than 16,384 characters still produced this in one error case on our servers, but reducing the boundary to 12,000 fixed it.

Most real-world mail headers are well under 4 KB.

[#2] phrank [2009-03-21 14:10:34]

This function is marked as internal function by the c-client library and should not be used by php directly.

Please be aware that the result will always contain fields that have not been set in the message. For example reply_to and sender will always be set even if there is no Reply-To and Sender header fields are defined in the message.

[#3] Oliver [2006-04-15 17:50:07]

To see the content of the returned object try this code:

   $stream = imap_open($server, $username, $password);
   $header = imap_fetchheader($stream, $uid, FT_UID);
   $obj = imap_rfc822_parse_headers( $header);
   print "<html><head></head><body><pre>\n";
   print_r($obj);
   print "</pre></body></html>";
   imap_close($stream);

[#4] Kevin Casper <casperke at gmail dot com> [2005-02-01 10:23:29]

I was lightly probing this function's behavoir. 

It handles rfc882 fields:

date
subject
message_id
to
from
reply-to
sender         - will generate using 'from' field if not in 
                     header
references
in-reply-to
cc

doesn't handle rfc882 fields:
return-path 
received
resent-         I think this field may be obsolete
keywords      

If there are other rfc822 fields or behavoirs for the function, then I can't speak of them as they weren't in my test.
As it is relevent to what I'm currently doing I may add more about this function from time to time.

[#5] jh at junetz dot de [2004-09-14 08:22:57]

But what you /will/ get is a complete To field, i.e. unfolded as specified for long header fields in RFC 822. So if you want to replace imap_headerinfo() by this function, you can run it on imap_fetchheader().

[#6] Sven dot Dickert at planb dot de [2002-05-21 16:28:49]

The object you get from imap_rfc822_parse_headers differs from the object you get from imap_headerinfo/imap_header in the following points. You won't get the:
* flags
* msgno
* size
* Maildate
* udate
* fetchfrom
* fetchsubject

udate can be simulated with
$headerobj=imap_rfc822_parse_headers ($header);
$udate=strtotime($headerobj->date);

上一篇: 下一篇: