W3Schools.com

PHP quoted_printable_decode() Function


PHP String Reference 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:

Hello world.

The HTML source of the code above will be:

Hello
world.


PHP String Reference Complete PHP String Reference
WEB HOSTING
Best Web Hosting
PHP MySQL Hosting
Best Hosting Coupons
UK Reseller Hosting
Cloud Hosting
Top Web Hosting
$3.98 Unlimited Hosting
Premium Website Design
WEB BUILDING
Download XML Editor
FREE Website BUILDER
Best Website Templates Top CSS Templates
CREATE HTML Websites
EASY WEBSITE BUILDER
W3SCHOOLS EXAMS
Get Certified in:
HTML, CSS, JavaScript, XML, PHP, and ASP
W3SCHOOLS BOOKS
New Books:
HTML, CSS
JavaScript, and Ajax
STATISTICS
Browser Statistics
Browser OS
Browser Display
SHARE THIS PAGE