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"。