阅读(8) (1)

Smarty成员方法:clearAllCache()

2016-10-20 11:25:25 更新

Name

clearAllCache() — 清除全部缓存

说明

void clearAllCache(int expire_time);

参数提供了一个最小时间,在这时间到来之前,全部缓存将会被清除。

Example 14.9. clearAllCache

<?php
// 清除全部缓存
$smarty->clearAllCache();

// 一个小时内清除全部缓存
$smarty->clearAllCache(3600);
?>

参见 clearCache()isCached() 和 缓存。