程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php 數組轉xml與xml轉換數組實例

php 數組轉xml與xml轉換數組實例

編輯:關於PHP編程

本文章來給各位同學介紹兩個簡單的實例,php 數組轉xml與xml轉換數組,希望此文章對各位朋友會有所幫助。

php 數組轉xml

 代碼如下 復制代碼

function array2xml($array, $xml = false){
    if($xml === false){
        $xml = new SimpleXMLElement('<root/>');
    }
    foreach($array as $key => $value){
        if(is_array($value)){
            array2xml($value, $xml->addChild($key));
        }else{
            $xml->addChild($key, $value);
        }
    }
    return $xml->asXML();
}
 
header('Content-type: text/xml');
print array2xml($array);

php xml轉數組

 代碼如下 復制代碼

$s = <<<EOS
<root>
<Formula>
<formulaname>Basic</formulaname>
<movespeed>1</movespeed>
<box>4</box>
<chicken>3</chicken>
<ducks>1</ducks>
<cereal>2</cereal>
</Formula>
</root>
EOS;
 
$a = json_decode(json_encode((array) simplexml_load_string($s)),1);
print_r($a);

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved