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

quoted_printable_encode

Description

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

Syntax

quoted_printable_encode ( string $str ) : string

Parameters

str

The input string.

Return

Returns the encoded string.

Examples

1

<?

$str = "1 + 2 = 3";

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