Switch language

wpseek.com
A WordPress-centric search engine for devs and theme authors




savedomdocument [ WordPress Function ]

savedomdocument ( $doc, $filename )
Parameters:
  • (DOMDocument) $doc
  • (string) $filename
Defined at:



Saves the XML document into a file

Source


<?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);
}
?>

Examples [ wp-snippets.com ]

Top Google zoekresultaten

Meer ...

Gebruikersdiscussies [ wordpress.org ]

0 User Note(s)

Nog geen één. Wees de eerste!

Nieuw toevoegen ...



HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics