PHP quoted_printable_decode() 函數
PHP quoted_printable_decode() 函數
實例
對經過 quoted-printable 編碼后的字符串進行解碼,返回 8 位的 ASCII 字符串:
<?php
$str = "Hello=0Aworld.";
echo quoted_printable_decode($str);
?>
$str = "Hello=0Aworld.";
echo quoted_printable_decode($str);
?>
上面代碼的瀏覽器輸出如下:
Hello world.
上面代碼的 HTML 輸出如下(查看源代碼):
Hello
world.
world.
運行實例 ?
定義和用法
quoted_printable_decode() 對經過 quoted-printable 編碼后的字符串進行解碼,返回 8 位的 ASCII 字符串
提示:經過 quoted-printable 編碼后的數據與通過郵件傳輸進行修改的不一樣。一個完全 US-ASCII 的文本可進行 quoted-printable 編碼,用來確保通過文字翻譯或線包網關進行消息傳遞時數據的完整性。
語法
quoted_printable_decode(string)
參數 | 描述 |
---|---|
string | 必需。規定要解碼的 quoted-printable 字符串。 |
技術細節
返回值: | 返回 8 位的 ASCII 字符串。 |
---|---|
PHP 版本: | 4+ |

相關文章
- PHP 運算符
- PHP 數組
- PHP 函數
- PHP Cookie
- PHP JSON
- PHP array_diff_uassoc() 函數
- PHP array_fill() 函數
- PHP array_push() 函數
- PHP array_reduce() 函數
- PHP array_reverse() 函數
- PHP array_splice() 函數
- PHP array_uintersect_assoc() 函數
- PHP array_walk() 函數
- PHP current() 函數
- PHP krsort() 函數
- PHP natcasesort() 函數
- PHP natsort() 函數
- PHP next() 函數
- PHP sort() 函數
- PHP uasort() 函數