English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

PHP Basic Tutorial

PHP Advanced Tutorial

PHP & MySQL

PHP Reference Manual

PHP quoted_printable_decode() Function Usage and Example

PHP String Manual String Functions

The quoted_printable_decode() function is used to convert quoted printable strings into8Bit string.

Syntax

string quoted_printable_decode ( string $str )

Definition and Usage

Used to convert quoted printable strings into8Bit string

Return Value

It returns8Binary string of bits

Parameter

Serial NumberParameter and Description
1

string

Input String

Online Example

Try the following example, which decodes the string after quoted-Decodes the printable encoding of the string and returns 8 ASCII character string of bits:

<?php
   $input = "www =0A w"3codebox.com";
   echo quoted_printable_decode($input);
?>
Test and see‹/›

Output Result

www 
 oldtoolbag.com

PHP String Manual String Functions