Yii清理缓存的方法
更新时间:2016年01月06日 11:39:46 作者:yuhui_fish
这篇文章主要介绍了Yii清理缓存的方法,涉及Yii结合jQuery的ajax调用实现清理缓存功能,代码简单实用,需要的朋友可以参考下
本文实例讲述了Yii清理缓存的方法。分享给大家供大家参考,具体如下:
html:
复制代码 代码如下:
<button onclick="clearCache()">ClearCache</button>
js:
function clearCache() { $.get('../eng/index.php?r=site/clear&'+new Date().getTime(),function(){ alert('Clear eng cache ok.'); }); }
php:
public function actionClear() { Yii::app()->cache->flush(); }
希望本文所述对大家基于Yii框架的PHP程序设计有所帮助。
相关文章
laravel5.1 ajax post 传值_token示例
今天小编就为大家分享一篇laravel5.1 ajax post 传值_token示例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧2019-10-10
最新评论