(PHP 8)
DOMElement::remove — Removes the element
У цієї функції немає параметрів.
Не повертає значень.
Приклад #1 DOMElement::remove() example
Removes the element.
<?php
$doc = new DOMDocument;
$doc->loadXML("<container><hello/><world/></container>");
$hello = $doc->documentElement->firstChild;
$hello->remove();
echo $doc->saveXML();
?>
Поданий вище приклад виведе:
<?xml version="1.0"?> <container><world/></container>