Home  >  Article  >  Backend Development  >  PHP往XML中添加节点的方法_php技巧

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

WBOY
WBOYOriginal
2016-05-16 20:21:211251browse

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

1. contacts.xml代码

复制代码 代码如下:

    
         
               J
               J
               J
         

          Manager
          National
          1971-12-22
    


2. php代码
复制代码 代码如下:
     $tel_node = null;
     $doc = xmldocfile ('contacts.xml');
     $contact_node = $doc->root ();
     $kids = $contact_node->children ();
     while ($node = array_shift ($kids)) {
          if (($node->type == XML_ELEMENT_NODE) && ($node->tagname == 'personal')) {
               $tel_node =& $node;
               break;
          }
     }
     if ($tel_node == null){
          die ("Couldn't locate 'personal' node.");
     }
     $work_node = $tel_node->new_child ('work', '6666');
     print ("
\n");<br>
     print (htmlspecialchars ($doc->dumpmem ()));<br>
     print ("
\n");
?>

希望本文所述对大家的php程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn