iconv_mime_decode_headersDecodes multiple Description
arrayfalse iconv_mime_decode_headers(string
$headers , int $mode = 0, stringnull $encoding = null )
Decodes multiple Parameters
Return Values
Returns an associative array that holds a whole set of
Each key of the return value represents an individual field name and the corresponding element represents a field value. If more than one field of the same name are present, iconv_mime_decode_headers automatically incorporates them into a numerically indexed array in the order of occurrence. Note that header names are not case-insensitive. Changelog
Examples
Example #1 iconv_mime_decode_headers example
The above example will output: Array ( [Subject] => Prüfung Prüfung [To] => example@example.com [Date] => Thu, 1 Jan 1970 00:00:00 +0000 [Message-Id] => <example@example.com> [Received] => Array ( [0] => from localhost (localhost [127.0.0.1]) by localhost with SMTP id example for <example@example.com>; Thu, 1 Jan 1970 00:00:00 +0000 (UTC) (envelope-from example-return-0000-example=example.com@example.com) [1] => (qmail 0 invoked by uid 65534); 1 Thu 2003 00:00:00 +0000 ) ) See Also
|