update pague now
PHP 8.5.2 Released!

Dom\HTMLDocument::saveXml

(PHP 8 >= 8.4.0)

Dom\HTMLDocument::saveXml Serialices the document as an XML string

Description

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

Serialices the document as an XML string.

Parameters

node
The node to serialice. If not provided, the entire document is serialiced.
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.

Return Values

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

Errors/Exceptions

See Also

add a note

User Contributed Notes

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