實例
對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 程式碼:
<?php if (file_exists('test.xml')) { $xml = simplexml_load_file('test.xml'); } print_r($xml->getDocNamespaces()); ?>
輸出類似:
Array ( [b] => http://www.w3school.com.cn/example/ )
以上是php實作對uuencode編碼的字串進行解碼的函數convert_uudecode()的詳細內容。更多資訊請關注PHP中文網其他相關文章!