What is Smarty?
Why use it?
Use Cases and Work Flow
Syntax Comparison
Template Inheritance
Best Practices
Crash Course
You may use the Smarty logo according to the trademark notice.
For sponsorship, advertising, news or other inquiries, contact us at:
clearCompiledTemplate() — 清除模板编译文件
void clearCompiledTemplate(string tpl_file,
string compile_id,
int exp_time);
清除特定模板的编译文件,如不指定特定模板则清除全部的编译文件。
设置$compile_id
将只清除该$compile_id
对应的编译文件。
如设置了exp_time值,则只会清除比exp_time
更老的时间编译的编译文件。
除非特殊的需要,一般情况下不需要使用该函数。
Example 14.12. clearCompiledTemplate()
<?php // 清除特定的已编译模板 $smarty->clearCompiledTemplate('index.tpl'); // 清除整个编译目录的文件 $smarty->clearCompiledTemplate(); ?>
参见
clearCache()
.