PHP » GoLang |
login |
register |
about
|
GoLang iconv_mime_decode_headers
request it (328)
GoLang replacement for PHP's iconv_mime_decode_headers
[edit | history]
iconv_mime_decode_headers(PHP 5, PHP 7) iconv_mime_decode_headers — Decodes multiple MIME header fields at once Description
array iconv_mime_decode_headers
( string
$encoded_headers
[, int $mode = 0
[, string $charset = ini_get("iconv.internal_encoding")
]] )Decodes multiple MIME header fields at once. Parameters
Return Values
Returns an associative array that holds a whole set of
MIME header fields specified by
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. Examples
Example #1 iconv_mime_decode_headers() example
<?php The above example will output: Array ( [Subject] => Prüfung Prüfung [To] => [email protected] [Date] => Thu, 1 Jan 1970 00:00:00 +0000 [Message-Id] => <[email protected]> [Received] => Array ( [0] => from localhost (localhost [127.0.0.1]) by localhost with SMTP id example for <[email protected]>; Thu, 1 Jan 1970 00:00:00 +0000 (UTC) (envelope-from [email protected]) [1] => (qmail 0 invoked by uid 65534); 1 Thu 2003 00:00:00 +0000 ) ) See Also
|
more
Recently updated
more
Most requested
more
Last requests
|