saveDomDocument( DOMDocument $doc, string $filename )

Saves the XML document into a file


Parameters

$doc

(DOMDocument) (Required)

$filename

(string) (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

Changelog
Version Description
WP-2.8.0 Introduced.