本文实例讲述了Yii清理缓存的方法。分享给大家供大家参考,具体如下:
html:
js:
1
2
3
4
5
6
|
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 (); } |
希望本文所述对大家基于Yii框架的PHP程序设计有所帮助。