PHP 8.4.1 Released!

imap_qprint

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

imap_qprintConvertit une chaîne à guillemets en une chaîne à 8 bits

Description

imap_qprint(string $string): string|false

Convertit la chaîne à guillemets string en une chaîne à 8 bits (selon la » RFC2045, section 6.7).

Liste de paramètres

string

Une chaîne à guillemets

Valeurs de retour

Retourne une chaîne de caractères à 8 bits, ou false si une erreur survient.

Voir aussi

  • imap_8bit() - Convertit une chaîne à 8 bits en une chaîne encodée en Quoted-Printable

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