PHP 8.5.0 Released!

DOMChildNode::remove

(PHP 8)

DOMChildNode::removeノードを削除する

説明

public DOMChildNode::remove(): void

ノードを削除します。

パラメータ

この関数にはパラメータはありません。

戻り値

値を返しません。

参考

add a note

User Contributed Notes 1 note

up
0
kevin dot sours at internetbrands dot com
9 months ago
Removing a nodes in a loop over a dom structure can break the iterator so
foreach ($element->childNodes AS $child)
{
  $child->remove();
}

isn't going to do what it looks like it should.  The loop body will only run once regardless of how many children exist.
To Top