示例#1
0
 public function parse($string)
 {
     parent::parse($string);
     if (!empty($this->stack)) {
         $this->textToTag('');
     }
     return $this->res;
 }
示例#2
0
 public function parse($s)
 {
     parent::parse($s);
     $this->bubble();
     return $this->res;
 }