對uuencode 編碼的字串進行解碼:
<?php $str = " ,2&5L;&@=V]R;&0A ` " ; echo convert_uudecode ( $str ) ; ?>convert_uudecode() 函數對uuencode 編碼的字串進行解碼。
該函數通常與convert_uuencode() 函數一起使用。
convert_uudecode( string )
參數 | D描述 |
---|---|
string | 必需。規定要解碼的uuencode 編碼的字串。 |
傳回值: | 以字串形式傳回解碼的資料。 |
---|---|
PHP 版本: | 5+ |
編碼字串,然後對它進行解碼:
<?php$str = "Hello world!";// Encode the string$encodeString = convert_uuencode($str);echo $encodeString . "<br>";// Decode the string$decodeString = convert_uudecode($encodeString); echo $decodeString;?>