PHP Yii cache clearing implementation method
The example in this article describes the Yii cache clearing method. Share it with everyone for your reference, the details are as follows:
html:
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(); }
Thanks for reading, I hope it can help everyone , thank you all for your support of this site!
For more articles related to how to implement PHP Yii cache cleaning, please pay attention to the PHP Chinese website!