我想删除我的 domdocument html 中的元素标记。
我有类似的东西
this is the <a href='#'>test link</a> here and <a href='#'>there</a>.
我想将我的 html 更改为
this is the test link here and there.
我的代码
$dom = new DomDocument();
$dom->loadHTML($html);
$atags=$dom->getElementsByTagName('a');
foreach($atags as $atag){
$value = $atag->nodeValue;
//I can get the test link and there value but I don't know how to remove the a tag.
}
谢谢您的帮助!