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
<?php
$str = "Hello=0Aworld.";
echo quoted_printable_decode($str);
?>
|
The output of the code above will be:
The HTML source of the code above will be:
Complete PHP String Reference
 |
W3Schools' Online Certification Program
The perfect solution for professionals who need to balance work, family, and career building.
More than 4000 certificates already issued!
|
The HTML Certificate documents your knowledge of HTML, XHTML, and CSS.
The JavaScript Certificate documents your knowledge of JavaScript and HTML DOM.
The XML Certificate documents your knowledge of XML, XML DOM and XSLT.
The ASP Certificate documents your knowledge of ASP, SQL, and ADO.
The PHP Certificate documents your knowledge of PHP and SQL (MySQL).
|