这篇文章主要为大家详细介绍了PHP遍历XML文档树功能实例,具有一定的参考价值,可以用来参考一下。
对使用PHP遍历XML文档树感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!
/**
* 使用PHP遍历XML文档树
*
* @param
* @arrange 512-笔记网: q1010.com
**/
<?php
function walk_tree ($node, $depth = 0) {
for ($i = 0, $indent = ''; $i < $depth; $i++)
$indent .= ' ';
if ($node->type == XML_ELEMENT_NODE) {
print ($indent . $node->tagname . "\n");
$kids = $node->children ();
$nkids = count ($kids);
if ($nkids > 0) {
$depth++;
for ($i = 0; $i < $nkids; $i++)
walk_tree ($kids[$i], $depth);
$depth--;
}
}
}
$doc = xmldocfile ('contact.xml');
print ("\n");
walk_tree ($doc->root ());
print ("\n");
?>
/*** 来自四海网(www.q1010.com) ***/
xml文档如下
<contact id="43956">
<personal>
<name>
<first>J</first>
<middle>J</middle>
<last>J</last>
</name>
<title>Manager</title>
<employer>National</employer>
<dob>1971-12-22</dob>
</personal>
</contact>
本文来自:http://www.q1010.com/173/959-0.html
注:关于PHP遍历XML文档树功能实例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:XML
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。