Ejemplo n.º 1
0
 /**
  * 设置模板
  * @param string $template 模板文件名
  */
 public function setTemplate($template = 'text')
 {
     //构成完整文件路径
     $file = SERVER_ROOT . 'app/wechat/view/template/' . $template . '.php';
     if (file_exists($file)) {
         self::$_tpl = $file;
     } else {
         Vera_Log::addErr('cannot find template ' . $file);
         exit;
     }
 }