這篇文章將為大家詳細講解有關php如何修改xml,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
創(chuàng)新互聯(lián)建站的客戶來自各行各業(yè),為了共同目標,我們在工作上密切配合,從創(chuàng)業(yè)型小企業(yè)到企事業(yè)單位,感謝他們對我們的要求,感謝他們從不同領域給我們帶來的挑戰(zhàn),讓我們激情的團隊有機會用頭腦與智慧不斷的給客戶帶來驚喜。專業(yè)領域包括成都做網(wǎng)站、網(wǎng)站設計、電商網(wǎng)站開發(fā)、微信營銷、系統(tǒng)平臺開發(fā)。php修改xml的方法:首先創(chuàng)建一個代碼示例文件;然后通過“$new->nodeValue=$_content;”方法修改節(jié)點值即可。
php創(chuàng)建、增加、刪除、修改xml
創(chuàng)建xml 方法:
formatOutput = true; $root = $doc -> createElement('root');//新建節(jié)點 $index = $doc -> createElement('index');//新建節(jié)點 $url = $doc -> createAttribute('url');//新建屬性 $patch = $doc -> createTextNode($_htmlpatch);//新建TEXT值 $url -> appendChild($patch);//將$patch文本設為$url屬性的值 $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);//節(jié)點值 $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);//將$id設為index節(jié)點的屬性,以下類同 $index -> appendChild($title); $index -> appendChild($content); $index -> appendChild($url); $index -> appendChild($author); $index -> appendChild($sendtime); $root -> appendChild($index);//設置index為root字節(jié)點 $doc -> appendChild($root);//設置root為跟節(jié)點 $doc -> save($xmlpatch);//保存文件 echo $xmlpatch . ' has create success'; ?>
增加xml 的節(jié)點
formatOutput = true; if($doc -> load($xmlpatch)) { $root = $doc -> documentElement;//獲得根節(jié)點(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 的節(jié)點
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!'; } ?>
修改XML的節(jié)點
formatOutput = true; if($doc -> load($xmlpatch)) { $root = $doc -> documentElement; $elm = $root -> getElementsByTagName('index'); $checkexist = 0; foreach ($elm as $new) { if($new -> getAttribute('id') == $_id) { $new -> setAttribute('title', $_title); $new -> nodeValue = $_content;//修改節(jié)點值,真是太意外了,沒想到跟JS一樣直接能賦值... //$new -> removeChild($new -> nodevalue); $checkexist = 1; } } if($checkexist == 0) { echo $_id . ' is not found in ' . $xmlpatch; } else { $doc -> save($xmlpatch); echo $_id . ' has been changed'; } } else { echo 'xml file loaded error!'; } ?>
關于php如何修改xml就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。