How can I delete and edit a specific node within a XML file by using php? please healp me anybody!!
|
|
|
Take a look at this SO question. Also, this tutorial describes a few different methods to work with an XML document in php. |
|||
|
|
|
I use the DOM library to traverse and manipulate XML documents. Before you can delete or edit a node, you will need to load your XML document into a DOMDocument object:
There are many ways to find the node you are after. One of them is performing a query using the XPath for the node:
$xmlNodes is an array of DOMElements. They have their own functions to delete or edit the particular nodes you are after. For example you can get all of them and delete certain attributes:
Once you are done, you can save your changes to file:
|
|||
|
|
You could use the xml2array function, and then threat it like an array:
|
|||||||
|
|
SimpleXML was new to PHP 5.
Once your XML is loaded into a simpleXML object you can locate the specific node and 'unset' it to delete it. |
|||
|
|