龙岩易富通网络科技有限公司

龙岩小程序开发,龙岩分销系统

smarty缓存操作

2015.09.10 | 612阅读 | 0条评论 | 未命名

smarty缓存的配置 $smarty->cache_dir = "/caches/";  //缓存目录 $smarty->caching = true;           //开启缓存 $smarty->cache_lifetime = 60;     //缓存时间,单位秒 //你可以给不同的模板设置不同的缓存过期时间,一个lifetime,一个display。 smarty缓存的使用和清除 $smarty->display(‘cache.htm’,cache_id); //创建带ID的缓存 $smarty->clear_all_cache(); //清除所有缓存 $smarty->clear_cache(‘index.htm’); //清除index.htm的缓存 $smarty->clear_cache(‘index.htm’,cache_id); //清除指定id的缓存

赞 (

发表评论