function &MathMLNode($id = NULL) { parent::XMLNode($id); }
function XML($url = '') { parent::XMLNode(); $this->status = 0; $this->error = ''; $this->version = '1.0'; $this->encoding = 'ISO-8859-1'; $this->contentType = 'text/xml'; $this->docTypeDecl = ''; $this->xmlDecl = ''; // 载入xml文档 $this->load($url); }
public function Button($value) { parent::XMLNode("input", ""); $this->createAttribute("value", $value); }
function XML($url = '') { // Init external properties parent::XMLNode(); $this->status = 0; $this->error = ''; $this->version = '1.0'; $this->encoding = 'ISO-8859-1'; $this->contentType = 'text/xml'; $this->docTypeDecl = ''; $this->xmlDecl = ''; // Load the referenced XML document $this->load($url); }