简体   繁体   中英

editing xml data in php

I want this code to replace in the "platform" tag with something like "newData"

$xml = new DOMDocument();
$xml->load('myhappyfarmsave.xml');
$xpath = new DOMXPath($xml);

$elements = $xpath->query('/myhappyfarmsave/platform');

$domElement = $elements->item(0);
var_dump($domElement->textContent);
$domElement->textContent = "newData";

$xml->save('myhappyfarmsavenew.xml');

I don't know what's wrong with my code. thanks for your help

<?xml version="1.0" encoding="UTF-8"?>
<myhappyfarmsave version="3">
    <platform>Bazaar</platform>
    <timestamp>1356876534</timestamp>
    <lastlogtime>1356823542</lastlogtime>
</myhappyfarmsave>

Well, $node->textContent is a readonly value, so you cannot modify it.

Try playing with $node->nodeValue instead:

$domElement = $elements->item(0);
$domElement->nodeValue = "newData";

$xml->save('myhappyfarmsavenew.xml');

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM