saveDomDocument( DOMDocument $doc, string $filename )
Saves the XML document into a file.
Parameters
- $doc
-
(Required)
- $filename
-
(Required)
Source
File: wp-admin/includes/misc.php
function saveDomDocument($doc, $filename) {
$config = $doc->saveXML();
$config = preg_replace("/([^\r])\n/", "$1\r\n", $config);
$fp = fopen($filename, 'w');
fwrite($fp, $config);
fclose($fp);
}
Changelog
Version | Description |
---|---|
2.8.0 | Introduced. |