(no version information, might be only in CVS)
DomDocument_>html_dump_mem __
Dumps the internal XML tree back into a string as HTML
Description
string
DomDocument_>html_dump_mem ( void )
Creates an HTML document from the dom representation_ This function
usually is called after building a new dom document from scratch
as in the example below_
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);
echo "<PRE>";
echo htmlentities($doc_>html_dump_mem());
echo "</PRE>";
?> |
|
See also domdocument_dump_file(),
domdocument_html_dump_mem()_