PHP 8.5.0 Beta 2 available for testing

Dom\HTMLDocument::saveXmlFile

(PHP 8 >= 8.4.0)

Dom\HTMLDocument::saveXmlFileSerializes the document as an XML file

説明

public Dom\HTMLDocument::saveXmlFile(string $filename, int $options = 0): int|false

Serializes the document as an XML file.

パラメータ

filename
The path to the file to save to.
options
追加のオプション。 LIBXML_NOEMPTYTAGLIBXML_NOXMLDECL が指定できます。 PHP 8.3.0 より前のバージョンでは、LIBXML_NOEMPTYTAG のみサポートされていました。

戻り値

The number of bytes written on success, or false on failure.

エラー / 例外

  • Throws a ValueError if filename is an empty string or contains any null bytes.

参考

add a note

User Contributed Notes

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