コード例 #1
0
ファイル: pharse_parser_html.php プロジェクト: ressio/pharse
 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;
 }
コード例 #2
0
ファイル: ganon.php プロジェクト: coolgod/cmb-xr-crawler
 function parse_doctype()
 {
     if (!parent::parse_doctype()) {
         return false;
     }
     $index = null;
     $this->hierarchy[count($this->hierarchy) - 1]->addDoctype($this->status['dtd'], $index);
     return true;
 }