本文实例讲述了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
/**
 * created by phpstorm.
 * date: 2016/5/25
 * time: 20:17
 * http 缓存
 */
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
/**
 * created by phpstorm.
 * date: 2016/5/25
 * time: 20:19
 */
?>
<div>
  <div>这是http缓存页面</div>
  <p><?= $new;?></p>
</div>

更多关于yii相关内容感兴趣的读者可查看本站专题:《yii框架入门及常用技巧总结》、《php优秀开发框架总结》、《smarty模板入门基础教程》、《php面向对象程序设计入门教程》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》

希望本文所述对大家基于yii框架的php程序设计有所帮助。