function &MathMLNode($id = NULL)
 {
     parent::XMLNode($id);
 }
示例#2
0
文件: xml.php 项目: thu0ng91/jmc
 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);
 }
示例#3
0
 public function Button($value)
 {
     parent::XMLNode("input", "");
     $this->createAttribute("value", $value);
 }
示例#4
0
 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);
 }