DomDocument- html_dump_mem

DomDocument- html_dump_mem -- Schreibt den internen XML-Baum als HTML in eine Zeichenkette

Beschreibung

string DomDocument- html_dump_mem ( void)

Generiert ein HTML-Dokument aus der aktuellen DOM-Repräsentation . Diese Funktion wird normalerweise aufgerufen , nachdem ein DOM-Dokument erzeugt wurde .

Beispiel 1 . Generierung eins HTML-Headers

 
?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("Das

 
ist

 
der

 
Titel")

 
;

 
$text

 
=

 
$title

 
-

 
append_child($text)

 
;

 
echo

 
"

 
PRE

 
"

 
;

 
echo

 
htmlentities($doc

 
-

 
html_dump_mem())

 
;

 
echo

 
"

 
/

 
PRE

 
"

 
;

 
?





See also DomDocument_dump_file( ) , DomDocument_html_dump_mem( ) .