Esempio n. 1
0
 public function display($file)
 {
     $this->tpl_file = TPL_DIR . $file . TPL_EXTENDTION;
     //设置模板文件路径
     if (!file_exists($this->tpl_file)) {
         exit(get_langage_message("template.lang.php", 'TEMPLATE_FILE_NOT_FOUND', array('TEMPLATE_FILE' => $this->tpl_file)));
     }
     $this->parse_file = TPL_C_DIR . md5($file) . '.php';
     //设置编译文件路径
     $parse = new Parse($this->tpl_file);
     //初始化模板解析类
     $parse->compile($this->parse_file, $this->tpl_file);
     //解析静态模板文件,生成编译文件
     //判断是否需要重新生成缓存文件
     $this->cache($file);
 }