quoted_​printable_​encode – PHP String Functions

Syntax :

quoted_​printable_​encode ( string );

Description :

The quoted_​printable_​encode() function convert a 8 bit string to a quoted-printable string.

Quoted printable string is created according to » RFC2045, section 6.7.

It is same as imap_8bit(), 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 return the encoded string.


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

You may also like...