imap_mime_header_decodeDecode MIME header elements
&reftitle.description;
arrayimap_mime_header_decodestringtext
Decodes MIME message header extensions that are non ASCII text (see RFC2047).
&reftitle.parameters;
text
The MIME text
&reftitle.returnvalues;
The decoded elements are returned in an array of objects, where each
object has two properties, charset and
text.
If the element hasn't been encoded, and in other words is in
plain US-ASCII, the charset property of that element is
set to default.
&reftitle.examples;
imap_mime_header_decode example
";
$elements = imap_mime_header_decode($text);
for ($i=0; $icharset}\n";
echo "Text: {$elements[$i]->text}\n\n";
}
?>
]]>
&example.outputs;
]]>
In the above example we would have two elements, whereas the first
element had previously been encoded with ISO-8859-1, and the second
element would be plain US-ASCII.
&reftitle.seealso;
imap_utf8