imap_qprint

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

imap_qprintConverte uma string imprimível escapada em uma string de 8 bits

Descrição

imap_qprint(string $string): string|false

Converta uma string imprimível escapada em uma string de 8 bits de acordo com a » RFC2045, seção 6.7.

Parâmetros

string

Uma string imprimível escapada

Valor Retornado

Retorna uma string de 8 bits, ou false em caso de falha.

Veja Também

  • imap_8bit() - Converte uma string de 8 bits em uma string imprimível escapada

adicione uma nota

Notas Enviadas por Usuários (em inglês) 1 note

up
4
bernard at bmpsystems dot com
25 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