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

The Altova MissionKit is an integrated suite of tools ideal for:
- XML development
- Web & Web services development
- Data mapping & integration
- Rendering & publishing XML & database data
- XBRL validation, taxonomy editing, transformation & rendering
The MissionKit for XML Developers includes XMLSpy® - the industry-leading XML editor; MapForce® - a
graphical data mapping, conversion, and integration tool; StyleVision® - a visual XSLT stylesheet designer;
DiffDog® - an XML-aware diff/merge tool; and 2 additional tools.
Try all 6 products free for 30 days!
Download a fully-functional free trial
|
|
|
|