DOMElement::remove
(PHP 8)
DOMElement::remove — 要素を削除する
パラメータ
この関数にはパラメータはありません。
戻り値
値を返しません。
例
例1 DOMElement::remove() の例
要素を削除します。
<?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>
参考
- DOMElement::after() - 要素の後ろにノードを追加する
- DOMElement::before() - 要素の前にノードを追加する
- DOMElement::replaceWith() - 要素を新しいノードで置換する
- DOMNode::removeChild() - 子要素群から子要素を削除する
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google