before
<root>
<child1>child1</child1>
<child2>child2</child2>
<child3>child3</child3>
</root>
I want the following result(after)
<root>
<child1>child1</child1>
<child3>child3</child3>
</root>
I'm using PHP and SimpleXML. How to skip a element on PHP?