PHP quoted_printable_decode() Function
Example
Decode a quoted-printable string to an 8-bit ASCII string:
<?php
$str = "Hello=0Aworld.";
echo quoted_printable_decode($str);
?>
The browser output of the code above will be:
Hello world.
The HTML output of the code above will be (View Source):
Hello
world.
Try it Yourself »
Definition and Usage
The quoted_printable_decode() function decodes a quoted-printable string to an 8-bit ASCII string.
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.
Syntax
quoted_printable_decode(string)
Parameter Values
Parameter | Description |
---|---|
string | Required. Specifies the quoted-printable string to be decoded |
Technical Details
Return Value: | Returns the 8-bit ASCII string |
---|---|
PHP Version: | 4+ |
❮ PHP String Reference