PHP 8.1.31 Released!

imap_qprint

(PHP 4, PHP 5, PHP 7, PHP 8)

imap_qprint Konvertiert einen quoted-printable-kodierten String in einen 8-Bit-String

Beschreibung

imap_qprint(string $string): string|false

Konvertiert einen quoted-printable String in einen 8-Bit-String gemäß » RFC2045, Abschnitt 6.7.

Parameter-Liste

string

Ein quoted-printable-kodierter String

Rückgabewerte

Gibt einen 8-Bit-String zurück. Bei einem Fehler wird false zurückgegeben.

Siehe auch

  • imap_8bit() - Konvertiert einen 8bit-String in einen quoted-printable String

add a note

User Contributed Notes 1 note

up
4
bernard at bmpsystems dot com
24 years ago
This function seems to have a bug, when the quoted-printable string contains a "=" without the HEX code of a Character.
I use the regular quoted_printable_decode instead.
To Top