quoted_​printable_​decode – PHP String Functions

Syntax :

quoted_​printable_​decode ( string );

Description :

The quoted_​printable_​decode() function decodes a quoted-printable string to an 8-bit string.

This function returns an 8-bit binary string corresponding to the decoded quoted printable string (according to » RFC2045, section 6.7, not » RFC2821, section 4.5.2, so additional periods are not stripped from the beginning of line).

It is same as imap_qprint(), except this one does not require the IMAP module to work.


Parameter :

[table caption=”” width=”100%” colwidth=”15%|15%|15%|55%” colalign=”left|lef|lef|left”]
Name, Required /Optional, Value Type, Description
string , Required, String , It is the input string.
[/table]


Output :

It will returns the 8-bit binary string.


Related articles : chr()crc32()md5_file()crypt(), htmlspecialchars_decode()quoted_printable_encode() .


You may also like...