DOMElement::insertAdjacentText
(PHP 8 >= 8.3.0)
DOMElement::insertAdjacentText — 隣接するテキストを挿入する
説明
where
で指定された相対的な位置に、
テキストを挿入します。
パラメータ
where
-
beforebegin
- 目的の要素の直前に挿入しますafterbegin
- 目的の要素の最初の子要素として挿入しますbeforeend
- 目的の要素の最後の子要素として挿入しますafterend
- 目的の要素の直後に挿入します
data
-
挿入する文字列
戻り値
値を返しません。
例
例1 DOMElement::insertAdjacentText() の例
<?php
$dom = new DOMDocument();
$dom->loadXML('<?xml version="1.0"?><container><p>H</p></container>');
$container = $dom->documentElement;
$p = $container->firstElementChild;
$p->insertAdjacentText("afterbegin", "P");
$p->insertAdjacentText("beforeend", "P");
echo $dom->saveXML();
?>
上の例の出力は以下となります。
<?xml version="1.0"?> <container><p>PHP</p></container>
+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