在PHP5中使用DOM控制XML(2)

黄舟
发布: 2023-03-03 14:10:02
原创
872 人浏览过

//向DOM中写入新数据 
  $item = $dom->createElement("item"); 
  $title = $dom->createElement("title"); 
  $titleText = $dom->createTextNode("title text"); 
  $title->appendChild($titleText); 
  $item->appendChild($title); 
  $dom->documentElement->getElementsByTagName('channel')->item(0)->appendChild($item); 
   
  //从DOM中删除节点 
  //$dom->documentElement->RemoveChild($dom->documentElement->getElementsByTagName("channel")->item(0)); 
  //或者使用xpath查询出节点再删除 
  //$dom->documentElement->RemoveChild($xpath->query("/rss/channel")->item(0)); 
  //$dom->save("newfile.xml"); 
   
  //从DOM中修改节点数据 
  //修改第一个title的文件 
  //这个地方比较笨,新创建一个节点,然后替换旧的节点。如果哪位朋友有其他好的方法请一定要告诉我 
  $firstTitle = $xpath->query("/rss/channel/item/title")->item(0); 
  $newTitle = $dom->createElement("title"); 
  $newTitle->appendChild(new DOMText("This's the new title text!!!")); 
  $firstTitle->parentNode->replaceChild($newTitle, $firstTitle); 
  //修改属性 
  //$firstTitle = $xpath->query("/rss/channel/item/title")->item(0); 
  //$firstTitle->setAttribute("orderby", "4"); 
  $dom->save("newfile.xml"); 
   
  echo "


查看newfile.xml"; 
   
  //下面的代码获得并解析php.net的首页,将返第一个title元素的内容。 
  /* 
  $dom->loadHTMLFile("http://www.php.net/"); 
  $title = $dom->getElementsByTagName("title"); 
  print $title->item(0)->textContent; 
  */ 
  ?> 
   
  下面是test.xml文件代码: 
   
   
   
   
  javascript 
  http://blog.csdn.net/zhongmao/category/29515.aspx 
  javascript 
  zh-chs 
  .text version 0.958.2004.2001 
   
  zhongmao 
  out put excel used javascript 
  http://blog.csdn.net/zhongmao/archive/2004/09/15/105385.aspx 
  wed, 15 sep 2004 13:32:00 gmt 
  http://blog.csdn.net/zhongmao/archive/2004/09/15/105385.aspx 
  http://blog.csdn.net/zhongmao/comments/105385.aspx 
  http://blog.csdn.net/zhongmao/archive/2004/09/15/105385.aspx#feedback 
  2 
  http://blog.csdn.net/zhongmao/comments/commentrss/105385.aspx
  http://blog.csdn.net/zhongmao/services/trackbacks/105385.aspx 
  test description 
 
 
   
  zhongmao 
  out put word used javascript 
  http://blog.csdn.net/zhongmao/archive/2004/08/06/67161.aspx 
  fri, 06 aug 2004 16:33:00 gmt 
  http://blog.csdn.net/zhongmao/archive/2004/08/06/67161.aspx 
  http://blog.csdn.net/zhongmao/comments/67161.aspx 
  http://blog.csdn.net/zhongmao/archive/2004/08/06/67161.aspx#feedback 
  0 
  http://blog.csdn.net/zhongmao/comments/commentrss/67161.aspx 
  http://blog.csdn.net/zhongmao/services/trackbacks/67161.aspx 
  test word description 
 
 
   
  zhongmao 
  xmlhttp 
  http://blog.csdn.net/zhongmao/archive/2004/08/02/58417.aspx 
  mon, 02 aug 2004 10:11:00 gmt 
  http://blog.csdn.net/zhongmao/archive/2004/08/02/58417.aspx 
  http://blog.csdn.net/zhongmao/comments/58417.aspx 
  http://blog.csdn.net/zhongmao/archive/2004/08/02/58417.aspx#feedback 
  0 
  http://blog.csdn.net/zhongmao/comments/commentrss/58417.aspx 
  http://blog.csdn.net/zhongmao/services/trackbacks/58417.aspx 
  xmlhttpaaa asd bb cc dd 
 
 
 
 
 

以上就是在PHP5中使用DOM控制XML(2)的内容,更多相关文章请关注PHP中文网(www.php.cn)!


相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!