当前位置:Gxlcms > PHP教程 > php修改增加xml结点属性的代码

php修改增加xml结点属性的代码

时间:2021-07-01 10:21:17 帮助过:23人阅读

2、php代码

  1. $dom=new DOMDocument('1.0');
  2. $dom->load('x.xml');
  3. $em=$dom->getElementsByTagName('emotions');
  4. $em=$em->item(0);
  5. $items=$em->getElementsByTagName('item');
  6. foreach($items as $a){
  7. foreach($a->attributes as $b){
  8. if($b->nodeValue=='Birthday'){
  9. $a->setAttribute('name','nBirthday');
  10. }
  11. }
  12. }
  13. $t=$dom->createElement('item');
  14. $t->setAttribute('name','x');
  15. $t->setAttribute('src','www.sohu.com');
  16. $t->setAttribute('duration','duration');
  17. $em->appendChild($t);
  18. $dom->save('x.xml');
  19. ?>

脚本学堂 编辑推荐: php解析XML文档属性并编辑的代码 php xml文档解析函数学习实例 php解析XML数据的一段代码 PHP读取XML的几种方法 php中使用DOM类读取XML文件的代码 实例学习php操作XML的类DOMDocument

人气教程排行