How can I edit the value's in a xml file using simpleXML ?
I know how to create the file, but not how to edit the value in an existing file ?
How can I edit the value's in a xml file using simpleXML ?
I know how to create the file, but not how to edit the value in an existing file ?
Load your XML with SimpleXML and make the changes. Then you can use the asXML method to save the XML to a file (you pass the filename as the argument):
I am working like this (it's quite the same but it could help): The file test.xml could be any extension as long as it's a plain xml text.
test.xml:
And the PHP code:
Results test.xml:
Hope it helps!
Sure you can edit with SimpleXML:
Take a look at the examples.
Keep in mind that although you can edit XML with SimpleXML, there are limitations. For example, you can remove or delete a node or element. You can clear it so that its blank, but you can't eliminate it altogether. For that, you need DOM, or something like that.