PHP quoted_printable_decode() 函數(shù)
PHP quoted_printable_decode() 函數(shù)
實(shí)例
對經(jīng)過 quoted-printable 編碼后的字符串進(jìn)行解碼,返回 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.
運(yùn)行實(shí)例 ?
定義和用法
quoted_printable_decode() 對經(jīng)過 quoted-printable 編碼后的字符串進(jìn)行解碼,返回 8 位的 ASCII 字符串
提示:經(jīng)過 quoted-printable 編碼后的數(shù)據(jù)與通過郵件傳輸進(jìn)行修改的不一樣。一個完全 US-ASCII 的文本可進(jìn)行 quoted-printable 編碼,用來確保通過文字翻譯或線包網(wǎng)關(guān)進(jìn)行消息傳遞時(shí)數(shù)據(jù)的完整性。
語法
quoted_printable_decode(string)
參數(shù) | 描述 |
---|---|
string | 必需。規(guī)定要解碼的 quoted-printable 字符串。 |
技術(shù)細(xì)節(jié)
返回值: | 返回 8 位的 ASCII 字符串。 |
---|---|
PHP 版本: | 4+ |

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