PHP quoted_printable_decode Function
What is quoted_printable_decode Function?
Explanation
This function is used to convert a quoted-printable string to an 8 bit string.
Syntax:
string quoted_printable_decode(string)
In the above syntax function specifies the quoted-printable string to be decoded.
Example :
<?php
$str = "Hiox India=0AWeb Our World.";
echo quoted_printable_decode($str);
?>
Result :
Hiox India Web Our World.
In the above PHP example a quoted text is converetd to a 8 bit string without quotes.