what is the syntax of the QUOTED_PRINTABLE_DECODE() function in php?
quoted_printable_decode(string)
Parameter | Description |
---|---|
string | Required. Specifies the quoted-printable string to be decoded |
examples of the QUOTED_PRINTABLE_DECODE() function
Examples 1. In this example, we decode a quoted-printable string to an 8-bit ASCII string:
<?php
$str = "Hello=0Aworld.";
echo quoted_printable_decode($str);
?>