So ändern Sie XML in PHP: Erstellen Sie zunächst eine Codebeispieldatei und ändern Sie dann den Knotenwert mit der Methode „$new->nodeValue=$_content;“. H Empfohlen: pPhp-Video-Tutorial
PHP-Erstellung, Erweiterung, Löschung, Änderung von XML
<?php $xmlpatch = 'index.xml'; $_id = '3'; $_title = 'title3'; $_content = 'content3'; $_author = 'author3'; $_sendtime = 'time3'; $_htmlpatch = '3.html'; $doc = new DOMDocument(); $doc -> formatOutput = true; if($doc -> load($xmlpatch)) { $root = $doc -> documentElement;//获得根节点(root) $index = $doc -> createElement('index'); $url = $doc -> createAttribute('url'); $patch = $doc -> createTextNode($_htmlpatch); $url -> appendChild($patch); $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); $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); $index -> appendChild($title); $index -> appendChild($content); $index -> appendChild($url); $index -> appendChild($author); $index -> appendChild($sendtime); $root -> appendChild($index); $doc -> save($xmlpatch); echo $_id . ' has been added in ' . $xmlpatch; } else { echo 'xml file loaded error!'; } ?>
<?php $xmlpatch = 'index.xml'; $_id = '3'; $doc = new DOMDocument(); $doc -> formatOutput = true; if($doc -> load($xmlpatch)) { $root = $doc -> documentElement; $elm = $root -> getElementsByTagName('index'); foreach ($elm as $new) { if($new -> getAttribute('id') == $_id) { if($root -> removeChild($new)) { echo $_id . ' has been deleted'; } else { echo $_id . ' delete failed'; } } } $doc -> save($xmlpatch); } else { echo 'xml file loaded error!'; } ?>
Das obige ist der detaillierte Inhalt vonSo ändern Sie XML in PHP. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!