Documentation is available at xhtml_doc.php
- <?php
- class XHTML_doc extends xml_element
- {
- var $head;
- var $title;
- var $body;
- var $doctype;
- function XHTML_doc($title="")
- {
- $this->xml_element("html",array("xmlns" => "http://www.w3.org/1999/xhtml"));
- $this->head=&$this->add_child(new xml_element("head"));
- $this->head->title=&$this->head->add_child(new xml_element("title"));
- $this->title=$title;
- $this->head->title->add_child($this->title);
- $this->head->add_child(new xml_element("meta",array ("name" => "Generator",
- "Content" => "PHP::HTML ".PHPHTML_VERSION." / PHP "
- .PHP_VERSION." / ".PHP_OS)));
- $this->body=&$this->add_child(new xml_element("body"));
- }
- }
- ?>
Documentation generated on Tue, 24 May 2005 03:59:18 -0400 by phpDocumentor 1.3.0RC3