2、php代码
-
-
- $dom=new DOMDocument('1.0');
- $dom->load('x.xml');
- $em=$dom->getElementsByTagName('emotions');
- $em=$em->item(0);
- $items=$em->getElementsByTagName('item');
- foreach($items as $a){
- foreach($a->attributes as $b){
- if($b->nodeValue=='Birthday'){
- $a->setAttribute('name','nBirthday');
- }
- }
- }
- $t=$dom->createElement('item');
- $t->setAttribute('name','x');
- $t->setAttribute('src','www.sohu.com');
- $t->setAttribute('duration','duration');
- $em->appendChild($t);
- $dom->save('x.xml');
- ?>
-
复制代码
脚本学堂 编辑推荐:
php解析XML文档属性并编辑的代码
php xml文档解析函数学习实例
php解析XML数据的一段代码
PHP读取XML的几种方法
php中使用DOM类读取XML文件的代码
实例学习php操作XML的类DOMDocument
|