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've currently got an XML file that has multiple instances of items. I need to be able to read, update, and create new items from/to this XML file.

I've managed to get reading working well using simplexml:

  $simplerXML = simplexml_load_file('myxml.xml');
  $test = $simplerXML[0]->senderName;
  echo $test;

However, I'm having trouble modifying values. I've looked through the simplexml documentation but I haven't found anything. I've tried basic stuff like

 $simplerXML[0]->senderName = "demo";

but unsurprisingly that didn't work.

I also need to be able to add new items to this xml file. The only examples I've been able to find create an entirely new file, but I need to be able to append to it (ie add to the file).

Any help or links to further documentation would be appreciated. Thanks.

share|improve this question
1  
Tried DOM? – Passerby Nov 15 '12 at 3:17
SimpleXML didn't end up being so simple when I tried it. I ended up writing my own object to do the job for me. You may want to take a swing at that. XML is fairly easy to assemble with a couple of stack data structures – Andrew Rhyne Nov 15 '12 at 3:19

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.