nodeValue=$_content;" 메서드를 통해 노드 값을 수정합니다."/> nodeValue=$_content;" 메서드를 통해 노드 값을 수정합니다.">
PHP에서 xml을 수정하는 방법: 먼저 코드 샘플 파일을 만든 다음 "$new->nodeValue=$_content;" 메서드를 통해 노드 값을 수정합니다. H 추천: pPhp 비디오 튜토리얼
Php 생성, 증가, 삭제, 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!'; } ?>증가XML 노드 수정
<?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!'; } ?>
위 내용은 PHP에서 XML을 수정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!