PHP 8.4.3 Released!

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
Additional Options. The LIBXML_NOEMPTYTAG and LIBXML_NOXMLDECL options are supported. Prior to PHP 8.3.0, only the LIBXML_NOEMPTYTAG option is supported.

Значення, що повертаються

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

Помилки/виключення

Прогляньте також

add a note

User Contributed Notes

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