示例#1
0
 public function result()
 {
     ob_start();
     parent::result();
     $result = ob_get_contents();
     ob_end_clean();
     return $result;
 }
示例#2
0
文件: RenderIf.php 项目: zuniphp/view
 public function result()
 {
     if (!$this->if) {
         return FALSE;
     }
     parent::result();
     return TRUE;
 }