Documentation
removeChild
usage
nql->removeChild( string xpath )
paramètres
xpath : the path to the node you want to remove
Removes a node
exemples
$nql = new NQL();
$nql->addCommand(
'<GET>
<MEDIA ID="25"/>
</GET>');
$media = $nql->getElement("/RESPONSE/RESULTS/MEDIA[1]");
$media->removeChild("INFO");