(no version information, might be only in CVS)
DomDocument_>dump_file __
Dumps the internal XML tree back into a file
Description
string
DomDocument_>dump_file ( string filename [, bool compressionmode [, bool format]])
Creates an XML document from the dom representation_ This function
usually is called after building a new dom document from scratch
as in the example below_ The
format specifies whether the output should be
neatly formatted, or not_ The first parameter specifies the name of the
filename and the second parameter, whether it should be compressed or not_
Ejemplo 1_ Creating a simple HTML document header <?php
$doc = domxml_new_doc("1_0");
$root = $doc_>create_element("HTML");
$root = $doc_>append_child($root);
$head = $doc_>create_element("HEAD");
$head = $root_>append_child($head);
$title = $doc_>create_element("TITLE");
$title = $head_>append_child($title);
$text = $doc_>create_text_node("This is the title");
$text = $title_>append_child($text);
$doc_>dump_file("/tmp/test_xml", false, true);
?> |
|
See also domdocument_dump_mem()
domdocument_html_dump_mem()_