Heim  >  Artikel  >  php教程  >  PHP往XML中添加节点的方法_php技巧

PHP往XML中添加节点的方法_php技巧

PHP中文网
PHP中文网Original
2016-05-25 17:13:431345Durchsuche

这篇文章主要介绍了PHP往XML中添加节点的方法,涉及php操作XML文件的技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了PHP往XML中添加节点的方法。分享给大家供大家参考。具体方法如下:

1. contacts.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>

2. php代码

<?php
     $tel_node = null;
     $doc = xmldocfile (&#39;contacts.xml&#39;);
     $contact_node = $doc->root ();
     $kids = $contact_node->children ();
     while ($node = array_shift ($kids)) {
          if (($node->type == XML_ELEMENT_NODE) && ($node->tagname == &#39;personal&#39;)) {
               $tel_node =& $node;
               break;
          }
     }
     if ($tel_node == null){
          die ("Couldn&#39;t locate &#39;personal&#39; node.");
     }
     $work_node = $tel_node->new_child (&#39;work&#39;, &#39;6666&#39;);
     print ("<pre class="brush:php;toolbar:false">\n");
     print (htmlspecialchars ($doc->dumpmem ()));
     print ("
\n"); ?>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn