html_dump_mem()
[email protected] (franco bevilacqua) Tue, 26 Oct 2004 08:47:07 +0200
| Newsgroups | php.xml.dev |
|---|---|
| Message-ID | <[email protected]> |
Hello,
I have a question regarding the html_dump_mem function. I build an xml
tree with HTML tags. When I dump it, I expect that my brother interpret
HTML tag procduced by the dump. But the dump produce only a text with my
html tag. Does someone knows how to do HTML interpretation with using
DOMXML dump
The following example explains exactly what whant to do.
(Inspired from html_dump_mem example )
I see nothing wrong with the output, what exactly did you expect?
chregu
<?php
// Creates the document
$doc = domxml_new_doc("1.0");
$root = $doc->create_element("html");
$root = $doc->append_child($root);
$body = $doc->create_element("body");
$body = $root->append_child($head);
$h1 = $doc->create_element("h1");
$h1 = $head->append_child($h1);
$text = $doc->create_text_node("This is the header1");
$text = $title->append_child($text);
echo $doc->html_dump_mem();
?>
The following dump is produced:
<html><body><h1>This is the header1</h1></body></html>
But I expect the following result:
"This is the header1" : formated as HTML header1
Thanks for your help.
Best regards
Franco