本文实例讲述了PHP实现使用DOM将XML数据存入数组的方法。分享给大家供大家参考,具体如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?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 );
|
PS:这里再为大家提供几款关于xml操作的在线工具供大家参考使用:
XML在线压缩/格式化工具:https://tool.zzvips.com/t/xml/
希望本文所述对大家PHP程序设计有所帮助。
原文链接:http://blog.csdn.net/qq1355541448/article/details/8639362