コード例 #1
0
 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
ファイル: Formulario.php プロジェクト: DaniloEpic/slast
 public function Button($value)
 {
     parent::XMLNode("input", "");
     $this->createAttribute("value", $value);
 }
コード例 #4
0
ファイル: xml.php プロジェクト: irfanevrens/sanal-pos
 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);
 }