HomeMenu
Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

quoted_printable_decode

Description

The quoted_printable_decode of String for PHP convert a quoted-printable string to an 8 bit string.

Syntax

quoted_printable_decode ( string $str ) : string

Parameters

str

The input string.

Return

Returns the 8-bit binary string.

Examples

1

<?

$str = "1 + 2 =3D 3";

$return = quoted_printable_decode($str);
echo $return;
1 + 2 = 3