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.

i'm trying to remove a child node from an xml. my script is working..but it removing a few childs... and not just the one i want to remove...

can you look and tell me what is my problem?

The XML file:

<?xml version="1.0" encoding="UTF-8" ?> 
<events>
   <record>
      <id>3</id> 
   </record>
   <record>
      <id>2</id> 
   </record>
   <record>
      <id>1</id> 
   </record>
 </events>

The delete.php file:

<?php
header("Content-type: text/html; charset=utf-8");

$record = array(
    'id' => $_POST['id'],
);
$users = new DOMDocument();
$users->load("xmp.xml");

$suser = simplexml_load_file("xmp.xml");
$count = 0;
$user = $users->getElementsByTagName("record");

foreach($user as $value)
{
   $tasks = $value->getElementsByTagName("id");
   $task  = $tasks->item(0)->nodeValue;

   if ($task == $record["id"]) {
    $users->documentElement->removeChild($users->documentElement->childNodes->item($count));
   }
   $count++;
}

$users->save("xmp.xml");

?>
share|improve this question
why is this line in the code: $suser = simplexml_load_file("xmp.xml");? – Gordon Jan 12 '11 at 10:20
Hmm.. i have no idea.. it's mistake.. – Ofear Jan 12 '11 at 10:27

1 Answer

up vote 1 down vote accepted

Fetch the node you want to remove. Call removeChild() on it's parentNode, e.g.

$node->parentNode->removeChild($node);

On a sidenote, you can do this with less code when using XPath:

$id  = /* some integer value */ 
$dom = new DOMDocument;
$dom->load('file.xml');
$xpath = new DOMXPath($dom);
$query = sprintf('/events/record[./id = "%d"]', $id);
foreach($xpath->query($query) as $record) {
    $record->parentNode->removeChild($record);
}
echo $dom->saveXml();

will remove the <record> element with an <id> child node having the value stored in $id.

Run code on Codepad.

More examples: remove element from xml

share|improve this answer
1  
can you be more detailed? Where should i put this line in my script? – Ofear Jan 12 '11 at 10:21
@Ofear instead of your removeChild call. – Gordon Jan 12 '11 at 10:22
1  
This is great! Works perfect!! can you please add in the first line $id = "some integer number" ; for others who will look for answer? Thanks you very much gordon! – Ofear Jan 12 '11 at 10:42

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.