執行個體
對 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;?>
convert_uudecode執行個體
XML 檔案:
<?xml version="1.0" encoding="ISO-8859-1"?><note xmlns:b="http://www.w3school.com.cn/example/"><to>George</to><from>John</from><heading>Reminder</heading><b:body>Don't forget the meeting!</b:body></note>
PHP 代碼:
<?phpif (file_exists('test.xml')) { $xml = simplexml_load_file('test.xml'); }print_r($xml->getDocNamespaces());?>
輸出類似:
Array([b] => http://www.w3school.com.cn/example/)