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.

Hi i have a code like this:

$doc = new DOMDocument();
$doc->Load('courses.xml');
    foreach ($doc->getElementsByTagName('courses') as $tagcourses)
    {
       foreach ( $tagcourses ->getElementsByTagName('course') as $tagcourse)
       {
        if(($tagcourse->getAttribute('instructorId')) == $iid){

             $tagcourses->removeChild($tagcourse);
        }
       }
    }
$doc->Save('courses.xml');

And i have a xml file:

<courses>
  <course courseId="1" instructorId="1">
    <course_code>456</course_code>
    <course_name>bil</course_name>
  </course>
   <course courseId="2" instructorId="2">
    <course_code>234</course_code>
    <course_name>math</course_name>
  </course>
  <course courseId="3" instructorId="2">
    <course_code>341</course_code>
    <course_name>cs</course_name>
  </course>
  <course courseId="4" instructorId="2">
    <course_code>244</course_code>
    <course_name>phyc</course_name>
  </course>
</courses>

In this code i tried to remove elements which has instructor id that specified with iid.The problem is all courses that has this instructor id must be removed.But in my program just the first course that has this iid is being removed.Can you suggest a solution?Thanks.

share|improve this question

1 Answer

up vote 1 down vote accepted

The getElementsByTagName() is returning a live nodelist. If you remove an element from it in a loop, the loop is then iterating over a different set of elements than it started with, and the results are unpredictable. Instead, store the nodes you want to remove on an array, then iterate over that and remove them.

$doc = new DOMDocument();
$doc->Load('courses.xml');
$to_remove = array();

    foreach ($doc->getElementsByTagName('courses') as $tagcourses)
    {
       foreach ( $tagcourses ->getElementsByTagName('course') as $tagcourse)
       {
         if(($tagcourse->getAttribute('instructorId')) == $iid){

             $to_remove[] = $tagcourse;
         }
       }
    }

    // Remove the nodes stored in your array
    // by removing it from its parent
    foreach ($to_remove as $node)
    {
       $node->parentNode->removeChild($node);
    }
$doc->Save('courses.xml');
share|improve this answer
Thanks for this useful answer – Ozge Mar 25 '12 at 13:37
@ozg You're welcome, happy to help. – Michael Berkowski Mar 25 '12 at 13:39

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.