quoted_printable_decode

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
HomeMenu