程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> xml 怎樣通過php解析到二維數組裡面

xml 怎樣通過php解析到二維數組裡面

編輯:關於PHP編程

<?xml version="1.0" encoding="utf-8"?> <config><db><servicer>localhost1</servicer><root>root</root><pw>123</pw></db><smarty></smarty></config>       <?php $doc = new DOMDocument('1.0','utf-8'); $doc->load("config.xml"); $roots=$doc->documentElement;//獲取根節點也就是config(僅有一個) $childs=$roots->childNodes;//獲取根節點下所有子節點也就是 db smarty for($i=0;$i<$childs->length;$i++){  //按照根節點下的子節點數量進行循環存入數組  $config_item=$childs->item($i);  //具體獲得db smarty  $configs[$config_item->nodeName]=array();//將db smarty這兩個子節點的名稱作為數據存入數組中  $items=$config_item->childNodes; //獲得db smarty下的所有子節點  for($j=0;$j<$items->length;$j++){//按照db smarty下所有子節點數進行循環將db smarty下的子節點名與值以二維數組存入   $item=$items->item($j);      //通過循環獲取每個db smarty 下的子節點   $configs[$config_item->nodeName][$item->nodeName]=$item->nodeValue;   }//二維數組的書寫  } var_dump($configs);    

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