> Smarty模板引擎中文在线手册 > clear_compiled_tpl [清除已编译模板]

clear_compiled_tpl
清除已编译模板

void clear_compiled_tpl (string tpl_file)

This clears the compiled version of the specified template resource, or all compiled template files if one is not specified. This function is for advanced use only, not normally needed.

清除指定模板资源的编译版本,如果不指定则清除所有已编译模板。除非特殊的需要,一般情况下不需要使用该函数。
(Fwolf:这个函数并不会删除模板本身,而是删除templates_c目录中存放的编译后生成的文件,这些编译后的文件会在下一次页面调用的时候再 一次被生成。)

Example 13-9. clear_compiled_tpl
例子 13-9. 清除已编译模板

// clear a specific template resource
// 清除指定模板资源的编译文件
$smarty->clear_compiled_tpl("index.tpl");

// clear entire compile directory
// 清除所有已编译的模板文件
$smarty->clear_compiled_tpl();
上一篇:
下一篇: