xml remove child node in php

前端 未结 3 1056
无人共我
无人共我 2021-01-27 11:55

I\'m trying to remove the \"druzenje\" element by the \'id\' attribute. I know that for that to happen, i have to remove all the child nodes from that element.

&         


        
3条回答
  •  执念已碎
    2021-01-27 12:25

    $element = $this->dom->getElementById($id);
    $element->parentNode->removeChild($element);
    

提交回复
热议问题