-
- $xmlpatch = 'index.xml';
- $_id = '1';
- $_title = 'title1';
- $_content = 'content1';
- $_author = 'author1' ;
- $_sendtime = 'time1';
- $_htmlpatch = '1.html';
- $doc = new DOMDocument('1.0', 'utf-8');
- $doc -> formatOutput = true;
- $root = $doc -> createElement_x('root');//New node
- $index = $doc -> createElement_x('index');//New node
- $url = $doc -> createAttribute('url ');//New attribute
- $patch = $doc -> createTextNode($_htmlpatch);//New TEXT value
- $url -> appendChild($patch);//Set $patch text to $url attribute The value of
- $id = $doc -> createAttribute('id');
- $newsid = $doc -> createTextNode($_id);
- $id -> appendChild($newsid);
- $title = $ doc -> createAttribute('title');
- $newstitle = $doc -> createTextNode($_title);
- $title -> appendChild($newstitle);
- $content = $doc -> createTextNode($ _content);//Node value
- $author = $doc -> createAttribute('author');
- $newsauthor = $doc -> createTextNode($_author);
- $author -> appendChild($newsauthor);
- $sendtime = $doc -> createAttribute('time');
- $newssendtime = $doc -> createTextNode($_sendtime);
- $sendtime -> appendChild($newssendtime);
- $index -> appendChild ($id);//Set $id as the attribute of the index node, the following is similar to
- $index -> appendChild($title);
- $index -> appendChild($content);
- $index -> appendChild($url);
- $index -> appendChild($author);
- $index -> appendChild($sendtime);
- $root -> appendChild($index);//Set index to root byte Click
- $doc -> appendChild($root);//Set root as the follow node
- $doc -> save($xmlpatch);//Save the file
- echo $xmlpatch . ' has create success';
- ?> ;
- < ;html xmlns="http://www.w3.org/1999/xhtml">
- XML operation
|