PHP quoted_printable_decode() Function


The quoted_printable_decode() function is used to decodes a quoted-printable string to an 8-bit Ascii string.

Syntax
quoted_printable_decode(string)
Parameters
  • string - (Required) Specify the quoted-printable string to be decoded . It is a mandatory parameter.
Example
<?php
  $a = "Hii=0AHello.";
  echo quoted_printable_decode($a);
?>

Browser Output

Hii Hello.

HTML Output

The HTML output can be seen by right clicking on browser output in browser and select View page source.
Hii 
Hello.

Prev Next