Exemplo n.º 1
0
 protected function parse_doctype()
 {
     if (!parent::parse_doctype()) {
         return false;
     }
     $index = null;
     //Needs to be passed by ref
     $this->hierarchy[count($this->hierarchy) - 1]->addDoctype($this->status['dtd'], $index);
     return true;
 }
Exemplo n.º 2
0
 function parse_doctype()
 {
     if (!parent::parse_doctype()) {
         return false;
     }
     $index = null;
     $this->hierarchy[count($this->hierarchy) - 1]->addDoctype($this->status['dtd'], $index);
     return true;
 }