欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

php DOMDocument removeChild 删除节点函数

程序员文章站 2022-04-13 14:02:50
...
本款教程实例是一款利用了 DOMDocument 的getElementById查询到指定的经删除节点,然后用removeChildm删除指定xml节点bi.

php DOMDocument removeChild 删除节点函数实例代码如下:

public function deletecomment($id) { 
  $xml = new domdocument(); 
  $xml->validateonparse=true; 
  $xml->loadxml($this->getcontents(true)); 
  $message = $xml->getelementbyid($id); 
  $parentnode = $message->parentnode; 
  $parentnode->removechild($message); 
  $this->putcontents($xml->savexml()); 
}

xml 文档:

 
]>