imap_qprint

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

imap_qprintBir 7 bitlik dizgeyi 8 bitlik dizgeye dönüştürür

Açıklama

imap_qprint(string $dizge): string|false

Belirtilen 7 bitlik (quoted-printable kodlu) dizgenin kodlamasını » RFC2045, bölüm 6.7'ye uygun olarak 8 bite dönüştürür.

Bağımsız Değişkenler

dizge

7 bitlik (quoted-printable) dizge.

Dönen Değerler

8 bitlik dizge döner, başarısızlık durumunda false döner.

Ayrıca Bakınız

  • imap_8bit() - 8 bitlik bir dizgeyi 7 bitlik (quoted-printable) bir dizgeye dönüştürür

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