(PHP 4 >= 4.1.0)
DomDocument->html_dump_mem — Schreibt den internen XML-Baum als HTML in eine Zeichenkette
Generiert ein HTML-Dokument aus der aktuellen DOM-Repräsentation. Diese Funktion wird normalerweise aufgerufen, nachdem ein DOM-Dokument erzeugt wurde.
Beispiel #1 Generierung eines einfachen HTML-Dokument-Headers
<?php
// Erstellt das Dokument
$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 $doc->html_dump_mem();
?>
Das oben gezeigte Beispiel erzeugt folgende Ausgabe:
<html><head><title>This is the title</title></head></html>
Siehe auch domdocument_dump_file() und domdocument_html_dump_mem().
Clarification: DomDocument->dump_mem adds the <?xml version="1.0"?> header, with some additional options.
header("Content-Type: application/xhtml+xml");
forces xml processing (this can also be a server setting). Idealy, both should be used for serving xhtml, though the <?xml version="1.0"?> may be dropped - on its own, it does not XML processing.
Note that DomDocument->html_dump_mem does not allow you to output valid XHTML, as you need to have valid xml tags for it. Use DomDocument->dump_mem to output valid XHTML instead.