decode()
decode(string $data) : string
Decodes quoted-printable data.
Parameters
string | $data | The Q-P data to decode. |
Returns
string —The decoded text.
Quoted-printable utility methods.
encode(string $text, string $eol = "\n", integer $wrap = 76) : string
Encodes text via quoted-printable encoding.
string | $text | The text to encode (UTF-8). |
string | $eol | The EOL sequence to use. |
integer | $wrap | Wrap a line at this many characters. |
The quoted-printable encoded string.