Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to modify my xml node value like

<summary>
<data>125</data>
</summary>

to

<summary>
<data>200</data>
</summary>

I am using PHP 5.2. Although i am able to read the xml files, but i am not able to update it

$doc = new DOMDocument();
$doc->load( 'summary.xml' );
$data = $doc->getElementsByTagName( "data" );
$datavalue = $data ->item(0)->nodeValue;
echo "$datavalue\n";

How to modify this data node value?

share|improve this question
possible duplicate of Using DOMXml and Xpath, to update XML entries , also please see php.net/class.domnode.php#domnode.props.nodevalue – hakre Jun 12 '12 at 11:27

1 Answer

up vote 1 down vote accepted

You can set the nodeValue and then use saveXML():

$data ->item(0)->nodeValue = 200;

$doc->saveXML();
share|improve this answer
Thanks bro :).. – Coder_sLaY Jun 12 '12 at 11:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.