溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

php如何改變xml節(jié)點(diǎn)值

發(fā)布時(shí)間:2021-09-02 09:39:32 來源:億速云 閱讀:231 作者:chen 欄目:編程語言

本篇內(nèi)容主要講解“php如何改變xml節(jié)點(diǎn)值”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“php如何改變xml節(jié)點(diǎn)值”吧!

php改變xml節(jié)點(diǎn)值的方法:1、從數(shù)據(jù)庫讀取數(shù)據(jù);2、寫一個(gè)xml文件;3、創(chuàng)建DOMDocument的對象并載入xml文件;4、修改指定節(jié)點(diǎn)下子節(jié)點(diǎn)的值即可。

本文操作環(huán)境:Windows7系統(tǒng)、PHP7.1版本、Dell G3電腦

php怎么改變xml 節(jié)點(diǎn)值?

php修改xml節(jié)點(diǎn)的值

今天剛剛實(shí)現(xiàn)的功能,找了很多資料,本來想用xpath,但是由于對xpath不甚了解。繞了個(gè)大圈后還是決定用DOMDocument來做。

在此做一個(gè)標(biāo)記,以后找資料的時(shí)候也不用太辛苦。

先從數(shù)據(jù)庫讀取數(shù)據(jù),然后寫一個(gè)xml文件。xml文件格式如下。

mainchart.xml

<?xml version="1.0" encoding="utf-8"?>
<records>
<record>
<pono>5008171</pono>
<status>3</status>
<opentime>2010.06.13 14:19</opentime>
<closetime>2010.06.16 14:19</closetime>
<potype>balance</potype>
<variety/>
<margin/>
<openprice/>
<closeprice/>
<zhisun/>
<zhiying/>
<lowest/>
<highest/>
<netvalue/>
<openamount/>
<openinterest/>
<amount/>
<point/>
<positiontime>3</positiontime>
<memo>TRMM-DP(123005)-D</memo>
</record>
<record>
<pono>5011083</pono>
<status>3</status>
<opentime>2010.06.15 16:15</opentime>
<closetime>2010.06.15 16:23</closetime>
<potype>buy</potype>
<variety>eurusd</variety>
<margin/>
<openprice>1.31822</openprice>
<closeprice>1.31655</closeprice>
<zhisun>0</zhisun>
<zhiying>0</zhiying>
<lowest/>
<highest/>
<netvalue/>
<openamount/>
<openinterest/>
<amount/>
<point/>
<positiontime>00:08:00</positiontime>
<memo>aaafff</memo>
</record>
<record>
<pono>5011913</pono>
<status>3</status>
<opentime>2010.06.15 16:51</opentime>
<closetime>2010.06.15 17:19</closetime>
<potype>sell</potype>
<variety>eurusd</variety>
<margin/>
<openprice>1.31819</openprice>
<closeprice>1.31809</closeprice>
<zhisun>0</zhisun>
<zhiying>0</zhiying>
<lowest/>
<highest/>
<netvalue/>
<openamount/>
<openinterest/>
<amount/>
<point/>
<positiontime>00:28:00</positiontime>
<memo>eee</memo>
</record>
</records>

php文件里的處理。

$file ="mainchart.xml";
    //創(chuàng)建DOMDocument的對象
    $dom=new DOMDocument('1.0');
    //載入mainchart.xml文件
    $dom->load($file);
    //獲得record節(jié)點(diǎn)的集合
    $records = $dom->getElementsByTagName('record');
    //遍歷record節(jié)點(diǎn)的集合
    foreach($records as $record){
        //如果record節(jié)點(diǎn)的pono子節(jié)點(diǎn)的值滿足條件,就修改該record節(jié)點(diǎn)下memo子節(jié)點(diǎn)的值
        if($record->getElementsByTagName('pono')->item(0)->nodeValue == $_GET['id']){
            $record->getElementsByTagName('memo')->item(0)->nodeValue = $_GET['content'];
        }
    }
$dom->save('mainchart.xml');

$_GET['id']和$_GET['content']是ajax傳過來的參數(shù)。


到此,相信大家對“php如何改變xml節(jié)點(diǎn)值”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI