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.
DomDocument->html_dump_mem
(No version information available, might be only in CVS)
DomDocument->html_dump_mem — Vuelca el árbol XML interno de vuelta a una cadena como HTML
Descripción
string DomDocument->html_dump_mem
( void
)
Crea un documento HTML para la representación dom. Por lo general, esta función es llamada después de construier un nuevo documento dom desde ceros, como en el siguiente ejemplo.
Example #1 Creación de una cabecera de documento HTML simple
<?php
// Crea el documento
$doc = domxml_new_doc("1.0");
$raiz = $doc->create_element("html");
$raiz = $doc->append_child($raiz);
$cabecera = $doc->create_element("head");
$cabecera = $raiz->append_child($cabecera);
$titulo = $doc->create_element("title");
$titulo = $cabecera->append_child($titulo);
$texto = $doc->create_text_node("This is the title");
$texto = $titulo->append_child($texto);
echo $doc->html_dump_mem();
?>
El resultado del ejemplo seria:
<html><head><title>This is the title</title></head></html>
Vea también domdocument_dump_file(), y domdocument_html_dump_mem().
DomDocument->html_dump_mem
Sudrien
14-Nov-2005 06:17
14-Nov-2005 06:17
drew dot northup at maine dot edu
16-Aug-2005 02:34
16-Aug-2005 02:34
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.
