您好,登錄后才能下訂單哦!
這篇文章給大家介紹怎么在YII框架中實現http緩存,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
http禁止緩存原理
header('Expires: 0'); header('Last-Modified: '. gmdate('D, d M Y H:i:s') . ' GMT'); header('Cache-Control: no-store, no-cahe, must-revalidate'); //ie專用 header('Cache-Control: post-chedk=0, pre-check=0', false); //for HTTP/1.0 header('Pragma: no-cache');
HttpcacheController.php
首先判斷的是客戶端lastModified,如果最后更新時間沒有變化,就不會更新緩存,然后再判斷etagSeed
<?php namespace frontend\controllers; use yii; use yii\web\Controller; class HttpcacheController extends Controller { public function behaviors()//先于action執行,可以用來實現頁面緩存 { return [ [ 'class'=>'yii\filters\HttpCache',//整個頁面緩存 'lastModified'=>function(){ return filemtime('hw.txt'); //return 22221231231231;//可以在每次修改數據時,記入緩存,從緩存讀取 }, 'etagSeed'=>function(){ $fp = fopen('hw.txt','r');//hw.txt在web的根目錄下 $title = fgets($fp);//讀取第一行 fclose($fp); return $title; //return 'etagseed2123123';//內容 }, ] ]; } public function actionIndex() { $content = file_get_contents('hw.txt'); return $this->renderPartial("index",['new'=>$content]); } }
httpcache/index.php
<?php ?> <div> <div>這是http緩存頁面</div> <p><?= $new;?></p> </div>
關于怎么在YII框架中實現http緩存就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。