本文实例讲述了Yii清理缓存的方法。分享给大家供大家参考,具体如下:
html:
<button onclick="clearCache()">ClearCache</button>
js:
1
2
3
4
5
6
7
|
function clearCache() { $.get( '../eng/index.php?r=site/clear&' + new Date().getTime(), function (){ alert( 'Clear eng cache ok.' ); }); } |
php:
1
2
3
4
|
public function actionClear() { Yii::app()->cache-> flush (); } |
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!