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.

May be the question is already answered in a way or in another in many questions, but since I'm a new bie in XML, I can't figured it out in my project.

I have an RSS (XML) file with this structure:

<rss>
    <channel>
          <item>
                <title>some title</title>
                <description> some descrp </description>
                ...
          </item>
     </channel>
</rss>

How can I, in PHP, delete some item when the title is equal to some value? THanks.

EDIT1 : I have my XML file stored at my web server.

share|improve this question

1 Answer

up vote 0 down vote accepted
$rss = "
<rss>
    <channel>
          <item>
                <title>some title</title>
                <description> some descrp </description>
          </item>
          <item>
                <title>some other title</title>
                <description> some descrp </description>
          </item>
     </channel>
</rss>
";
$doc = new DOMDocument();
$doc->loadXML($rss);
$xpath = new DOMXPath($doc);
$els = $xpath->query('//title[text()="some title"]');
foreach($els as $el)
{
    $parent = $el->parentNode;
    $parent->parentNode->removeChild($parent);
}
echo $doc->saveXML();

It searches for exact match.

ps: another method, without xpath

$doc = new DOMDocument();
$doc->loadXML($rss);
$els = $doc->getElementsByTagName('title');
for($i = $els->length-1; $i >= 0; $i--)
{
    $el = $els->item($i);
    if ($el->nodeValue == 'some title')
    {
        $parent = $el->parentNode;
        $parent->parentNode->removeChild($parent);
    }
}
echo $doc->saveXML();
share|improve this answer
Thanks for your help, but I would like to import my XML file, it's more bigger than I wrote, it was just to show it's structure. I tried $doc->loadXML("new2.xml"); but it seems not working? – hafedh Feb 12 '12 at 10:14
@hafedh: You have to use $doc->load("new2.xml"). – Saxoier Feb 12 '12 at 14:03
@Saxoier: THanks a lot, it works, but as it not saving in the file, the new 'data' is displayed on my php page but the XML file still have all items? – hafedh Feb 12 '12 at 14:15
ok, I had to add : $doc->save('new2.xml'); THanks. – hafedh Feb 12 '12 at 14:17

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.