PHP - Quoted Printable 解碼函式



語法

string quoted_printable_decode ( string $str )

定義和用法

用於將 Quoted Printable 字串轉換為 8 位字串。

返回值

返回 8 位二進位制字串。

引數

序號 引數和描述
1

字串

字串輸入。

示例

嘗試以下示例

<?php
   $input = "tutorials = point.";
   echo quoted_printable_decode($input);
?>

這將產生以下結果:

tutorials = point.
php_function_reference.htm
廣告