예제 #1
0
파일: RenderStr.php 프로젝트: zuniphp/view
 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;
 }