Example #1
0
 /**
  * 输出模板
  */
 public function render($tplFile = '')
 {
     $content = $this->_getFetch($tplFile, $this->tplVal);
     header('Content-Type: text/html; charset=utf-8');
     header('Cache-control: private');
     // 页面缓存控制
     header('X-Powered-By: OneFox');
     Response::setResData(array('template' => $this->_parsePath($tplFile), 'template_value' => $this->tplVal));
     Response::setResType('text/html');
     echo $content;
 }