PHP中的quoted_printable_decode()函数用于解码使用quoted-printable编码的字符串。
函数语法:
string quoted_printable_decode ( string $str )
参数说明:
返回值:
示例:
$str = "Hello=0AWorld";
$decodedStr = quoted_printable_decode($str);
echo $decodedStr; // 输出:Hello
在上面的示例中,字符串"Hello=0AWorld"使用了quoted-printable编码,其中=0A
表示换行符。使用quoted_printable_decode()函数解码后的字符串是"Hello"。