Smarty - the compiling PHP
template engine |
Prev 来源:PHP中文社区
|
Chapter 13. Methods |
Next
|
clear_all_cache
清除所有缓存
void clear_all_cache
(int
expire time)
This clears the entire template cache. As an optional parameter,
you can supply a minimum age in seconds the cache files must be before
they will get cleared.
清除所有模板缓存。作为可选参数“expire time”,你可以指定一个以秒为单位的最小时间,超过这个时间的缓存都将被清除掉。
Example 13-6. clear_all_cache
例子 13-6. 清除所有缓存
// clear the entire cache $smarty->clear_all_cache();
|
|