PHP – Delete XML Element

Dave Morgan is correct in that DOM classes are more powerful, but in case you want to stick with SimpleXML, try using the unset() function on any node, and that node will be removed from the XML.

unset($simpleXMLDoc->node1->child1)

Leave a Comment