load('C:\before.xml'); $sounds = $doc->getElementsByTagName('sound'); foreach($sounds as $sound) { $sound->parentNode->removeChild($sound); } $doc->save('C:\after.xml'); ?>