(no version information, might be only in CVS)
DomDocument_>dump_mem __
Dumps the internal XML tree back into a string
Description
string
DomDocument_>dump_mem ( [bool format [, string encoding]])
| Aviso |
Esta función
es EXPERIMENTAL_ Esto significa que el
comportamiento de esta función, el nombre de esta
función y en definitiva TODO lo documentado sobre esta
función, puede cambiar en una futura version de PHP SIN
AVISO_ La advertencia queda hecha, y utilizar esta extensión
queda bajo su propia responsabiliad_ |
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_
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_>dump_mem(true));
echo "</PRE>";
?> |
|
Nota:
The first parameter was added in PHP 4_3_0_
See also domdocument_dump_file(),
domdocument_html_dump_mem()_