update pague now
PHP 8.5.2 Released!

DOMChildNode::remove

(PHP 8)

DOMChildNode::remove Removes the node

Description

public DOMChildNode::remove (): void

Removes the node.

Parameters

This function has no parameters.

Return Values

No value is returned.

See Also

add a note

User Contributed Notes 1 note

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

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