Blog : PHP quoted_printable_decode() Function

PHP quoted_printable_decode() Function

--------------------------------------------------------------------------------
 Complete PHP String Reference
--------------------------------------------------------------------------------

Definition and Usage
The quoted_printable_decode() function decodes a quoted-printable string to an 8-bit ASCII string.

Syntax
quoted_printable_decode(string)  

Parameter Description
string Required. Specifies the quoted-printable string to be decoded


--------------------------------------------------------------------------------

Tips and Notes
Tip: Data encoded in quoted-printable are unlikely to be modified by mail transport. A text which is entirely US-ASCII may be encoded in quoted-printable to ensure the integrity of the data should the message pass through a character-translating, or line-wrapping gateway.


--------------------------------------------------------------------------------

Example
$str = "Hello=0Aworld.";
echo quoted_printable_decode($str);
?>  

The output of the code above will be:

Hello world.  

The HTML source of the code above will be:

Hello
world.