DOMChildNode::remove

(PHP 8)

DOMChildNode::removeRemoves the node

Beschreibung

public DOMChildNode::remove(): void

Removes the node.

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Rückgabewerte

Es wird kein Wert zurückgegeben.

Siehe auch

add a note

User Contributed Notes 1 note

up
0
kevin dot sours at internetbrands dot com
5 months ago
Removing a nodes in a loop over a dom structure can break the iterator soforeach ($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