php實現對uuencode編碼的字串進行解碼的函數convert_uudecode()

來源:互聯網
上載者:User

執行個體

對 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/)
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.