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.

Removed ALL junk nodes in xml using php

This is the sample input for the example:

<?xml version="1.0" encoding="UTF-8"?>
<root>
    <!--comment1-->
    <elem>a</elem>
    <junk>b</junk>
    <elem>
        <!--comment2-->
        <junk>c<junk>d</junk></junk>
    </elem>
    <!--comment3-->
    <junk>e</junk>
</root>

This is the resulting XML:

<?xml version="1.0" encoding="UTF-8"?>
<root>

    <elem>a</elem>

    <elem>


    </elem>


</root>

I look documents and applied like this:

$doc = new DOMDocument();
$doc->loadXML($xml);
$xpath = new DOMXPath($doc);

foreach ($xpath->query('/root/') as $elem) {
    $elem->parentNode->removeChild($elem);
}

for my case will remove all node "junk" and they will everywhere in xml document.

share|improve this question
What is your question? – Pekka 웃 Dec 31 '10 at 15:41
possible duplicate of PHP - Delete XML Element – Pekka 웃 Dec 31 '10 at 15:42
More convenient solution using XPath here: stackoverflow.com/questions/2499694/delete-elements-in-xml – Pekka 웃 Dec 31 '10 at 15:42
yes,but for me <junk> ,they are everywhere. i want to delete ALL elements that. – BandOfBrothers Dec 31 '10 at 16:04
@python the accepted answer in my second link should work for you. Something like $entity->deleteNodes('//entity[type="junk"]'); – Pekka 웃 Dec 31 '10 at 16:09
show 2 more comments

1 Answer

up vote 1 down vote accepted
foreach ($xpath->query('//junk') as $elem)
share|improve this answer
it does not work ,anyway thank for your answer. – BandOfBrothers Jan 4 '11 at 13:22

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.