PHP convert_uuencode() 函數(shù)
實例
編碼字符串:
?php
$str = "Hello world!";
echo convert_uuencode($str);
?>
定義和用法
convert_uuencode()
函數(shù)使用 uuencode 算法對字符串進行編碼。
注釋: 該函數(shù)把所有字符串(包括二進制)編碼為可打印的字符,確保其數(shù)據(jù)庫存儲及網(wǎng)絡(luò)傳輸?shù)陌踩?。請記住,在重新使用?shù)據(jù)前,請使用 convert_uudecode() 函數(shù)。
注釋: uuencoded 數(shù)據(jù)比原數(shù)據(jù)大約增大 35%。
語法
convert_uuencode( _string_ )
實例 1
編碼字符串,然后對它進行解碼:
?php
$str = "Hello world!";
// Encode the string
$encodeString = convert_uuencode($str);
echo $encodeString . "br>";
// Decode the string
$decodeString = convert_uudecode($encodeString);
echo $decodeString;
?>
總結(jié)
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對腳本之家的支持。如果你想了解更多相關(guān)內(nèi)容請查看下面相關(guān)鏈接
您可能感興趣的文章:- php curl簡單采集圖片生成base64編碼(并附curl函數(shù)參數(shù)說明)
- PHP crypt()函數(shù)的用法講解
- phpinfo無法顯示的原因及解決辦法
- PHP echo()函數(shù)講解
- PHP crc32()函數(shù)講解
- PHP count_chars()函數(shù)講解
- PHP安裝memcache擴展的步驟講解
- PHP配置ZendOpcache插件加速
- PHP安裝BCMath擴展的方法
- PHP explode()函數(shù)用法講解