Query: imap_mime_header_decode
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
IMAP_MIME_HEADER_DECODE(3) 1 IMAP_MIME_HEADER_DECODE(3) imap_mime_header_decode - Decode MIME header elementsSYNOPSISarray imap_mime_header_decode (string $text)DESCRIPTIONDecodes MIME message header extensions that are non ASCII text (see RFC2047).PARAMETERSo $text - The MIME textRETURN VALUESThe 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.EXAMPLESExample #1 imap_mime_header_decode(3) example <?php $text = "=?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= <keld@example.com>"; $elements = imap_mime_header_decode($text); for ($i=0; $i<count($elements); $i++) { echo "Charset: {$elements[$i]->charset} "; echo "Text: {$elements[$i]->text} "; } ?> The above example will output: Charset: ISO-8859-1 Text: Keld Jorn Simonsen Charset: default Text: <keld@example.com> 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.SEE ALSOimap_utf8(3). PHP Documentation Group IMAP_MIME_HEADER_DECODE(3)
Related Man Pages |
---|
mime::worddecoder5.18(3) - mojave |
mime::words(3) - suse |
mime::worddecoder(3) - mojave |
mime::words(3) - osx |
imap_mime_header_decode(3) - php |
Similar Topics in the Unix Linux Community |
---|
ASCII Text formatting |
to fetch the text after only first occurence |
[PHP] asking how to make plain text database searching system |
Writing text to file |
Import ASCII 28 delimited text file |