PHP 8.5.0 Beta 2 available for testing

Dom\CharacterData::before

(PHP 8 >= 8.4.0)

Dom\CharacterData::before文字データの前にノードを追加する

説明

public Dom\CharacterData::before(Dom\Node|string ...$nodes): void

渡された nodes を文字データの前に追加します。

パラメータ

nodes

ノードの前に追加されるノード。 文字列は自動的にテキストノードに変換されます。

戻り値

値を返しません。

エラー / 例外

DOM_HIERARCHY_REQUEST_ERR

指定された nodes のうちの一つの子ノードの型を、 親ノードが許可していない場合や、ノードが自分自身やその祖先であった場合に発生します。

DOM_WRONG_DOCUMENT_ERR

指定された nodes のうちの一つが、 このノードを作成したドキュメントとは異なるものから作成された場合に発生します。

例1 Dom\CharacterData::before() example

Adds nodes before the character data.

<?php
$doc
= Dom\XMLDocument::createFromString("<container><![CDATA[world]]></container>");
$cdata = $doc->documentElement->firstChild;

$cdata->before("hello", $doc->createElement("beautiful"));

echo
$doc->saveXML();
?>

上の例の出力は以下となります。

<?xml version="1.0"?>
<container>hello<beautiful/><![CDATA[world]]></container>

参考

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top