PHP 8.5.0 Beta 2 available for testing

Dom\CharacterData::replaceWith

(PHP 8 >= 8.4.0)

Dom\CharacterData::replaceWith文字データを新しいノードで置き換える

説明

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

文字データを新しい nodes で置き換えます。

パラメータ

nodes

置き換えるノード。 文字列は自動的にテキストノードに変換されます。

戻り値

値を返しません。

エラー / 例外

DOM_HIERARCHY_REQUEST_ERR

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

DOM_WRONG_DOCUMENT_ERR

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

例1 Dom\CharacterData::replaceWith() example

Replaces the character data with new nodes.

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

$cdata->replaceWith("beautiful", $doc->createElement("world"));

echo
$doc->saveXML();
?>

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

<?xml version="1.0"?>
<container>beautiful<world/></container>

参考

add a note

User Contributed Notes

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