コード例 #1
0
ファイル: HtmlTokenizer.php プロジェクト: floxim/floxim
 public function parse($string)
 {
     parent::parse($string);
     if (!empty($this->stack)) {
         $this->textToTag('');
     }
     return $this->res;
 }
コード例 #2
0
ファイル: ModifierParser.php プロジェクト: floxim/floxim
 public function parse($s)
 {
     parent::parse($s);
     $this->bubble();
     return $this->res;
 }