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:
clearAllCache() — 清除全部缓存
void clearAllCache(int expire_time);
参数提供了一个最小时间,在这时间到来之前,全部缓存将会被清除。
Example 14.9. clearAllCache
<?php // 清除全部缓存 $smarty->clearAllCache(); // 一个小时内清除全部缓存 $smarty->clearAllCache(3600); ?>
参见
clearCache()
,
isCached()
和
缓存。