本文整理汇总了PHP中Parse::compile方法的典型用法代码示例。如果您正苦于以下问题:PHP Parse::compile方法的具体用法?PHP Parse::compile怎么用?PHP Parse::compile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Parse
的用法示例。
在下文中一共展示了Parse::compile方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: display
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);
}