wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



savedomdocument › WordPress Function

Seit2.8.0
Veraltetn/v
savedomdocument ( $doc, $filename )
Parameter: (2)
  • (DOMDocument) $doc
    Erforderlich: Ja
  • (string) $filename
    Erforderlich: Ja
Definiert in:
Codex:

Saves the XML document into a file.



Quellcode

function saveDomDocument( $doc, $filename ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
	$config = $doc->saveXML();
	$config = preg_replace( "/([^\r])\n/", "$1\r\n", $config );

	$fp = fopen( $filename, 'w' );
	fwrite( $fp, $config );
	fclose( $fp );
}