PHP 8.5.0 Beta 2 available for testing

Dom\HTMLDocument::saveXml

(PHP 8 >= 8.4.0)

Dom\HTMLDocument::saveXmlSerializes the document as an XML string

説明

public Dom\HTMLDocument::saveXml(?Dom\Node $node = null, int $options = 0): string|false

Serializes the document as an XML string.

パラメータ

node
The node to serialize. If not provided, the entire document is serialized.
options
追加のオプション。 LIBXML_NOEMPTYTAGLIBXML_NOXMLDECL が指定できます。 PHP 8.3.0 より前のバージョンでは、LIBXML_NOEMPTYTAG のみサポートされていました。

戻り値

The serialized XML document string in the current document encoding, or false on failure.

エラー / 例外

  • node が別のドキュメントのものである場合、 エラーコード Dom\WRONG_DOCUMENT_ERR を持つ Dom\DOMException をスローします。

参考

add a note

User Contributed Notes

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