PHP Velho Oeste 2024

imap_header

(PHP 4, PHP 5, PHP 7)

imap_headerAlias of imap_headerinfo()

Warning

This alias is REMOVED as of PHP 8.0.0.

Description

This function is an alias of: imap_headerinfo().

add a note add a note

User Contributed Notes 2 notes

up
-5
stepotronic at nimbleminds dot net
16 years ago
At jeremy at caramiel dot com:
You are wrong, since it will just work if the encoding of the characters is also used in the current context.
There is a reason why it comes with the charset :)

There are way better solutions with imap_mime_header_decode
up
-9
jeremy at caramiel dot com
16 years ago
Here is a clean way to decode encoded imap headers that will work in all cases :

function fix_text($str)
{
    $subject = '';
    $subject_array = imap_mime_header_decode($str);

    foreach ($subject_array AS $obj)
        $subject .= rtrim($obj->text, "\t");

    return $subject;
}
To Top