search
php缓存种Jun 13, 2016 am 11:00 AM
cachecontentgtthis

php缓存类
cache.inc.php:

<?phpclass Cache {   /**    * $dir : 缓存文件存放目录    * $lifetime : 缓存文件有效期,单位为秒    * $cacheid : 缓存文件路径,包含文件名    * $ext : 缓存文件扩展名(可以不用),这里使用是为了查看文件方便   */   private $dir;   private $lifetime;   private $cacheid;   private $ext;   /**    * 析构函数,检查缓存目录是否有效,默认赋值   */   function __construct($dir='',$lifetime=1800) {       if ($this->dir_isvalid($dir)) {           $this->dir = $dir;           $this->lifetime = $lifetime;           $this->ext = '.Php';           $this->cacheid = $this->getcacheid();       }   }   /**    * 检查缓存是否有效   */   private function isvalid() {       if (!file_exists($this->cacheid)) return false;       if (!(@$mtime = filemtime($this->cacheid))) return false;       if (mktime() - $mtime > $this->lifetime) return false;       return true;   }   /**    * 写入缓存    * $mode == 0 , 以浏览器缓存的方式取得页面内容    * $mode == 1 , 以直接赋值(通过$content参数接收)的方式取得页面内容    * $mode == 2 , 以本地读取(fopen ile_get_contents)的方式取得页面内容(似乎这种方式没什么必要)   */   public function write($mode=0,$content='') {       switch ($mode) {           case 0:               $content = ob_get_contents();               break;           default:               break;       }       ob_end_flush();       try {           file_put_contents($this->cacheid,$content);       }       catch (Exception $e) {           $this->error('写入缓存失败!请检查目录权限!');       }   }   /**    * 加载缓存    * exit() 载入缓存后终止原页面程序的执行,缓存无效则运行原页面程序生成缓存    * ob_start() 开启浏览器缓存用于在页面结尾处取得页面内容   */   public function load() {       if ($this->isvalid()) {           echo "<span style='display:none;'>This is Cache.</span> ";           //以下两种方式,哪种方式好?????           require_once($this->cacheid);           //echo file_get_contents($this->cacheid);           exit();       }       else {           ob_start();       }   }   /**    * 清除缓存   */   public function clean() {       try {           unlink($this->cacheid);       }       catch (Exception $e) {           $this->error('清除缓存文件失败!请检查目录权限!');       }   }   /**    * 取得缓存文件路径   */   private function getcacheid() {       return $this->dir.md5($this->geturl()).$this->ext;   }   /**    * 检查目录是否存在或是否可创建    */   private function dir_isvalid($dir) {       if (is_dir($dir)) return true;       try {           mkdir($dir,0777);       }       catch (Exception $e) {             $this->error('所设定缓存目录不存在并且创建失败!请检查目录权限!');             return false;                   }       return true;   }   /**    * 取得当前页面完整url   */   private function geturl() {       $url = '';       if (isset($_SERVER['REQUEST_URI'])) {           $url = $_SERVER['REQUEST_URI'];       }       else {           $url = $_SERVER['Php_SELF'];           $url .= empty($_SERVER['QUERY_STRING'])?'':'?'.$_SERVER['QUERY_STRING'];       }       return $url;   }   /**    * 输出错误信息   */   private function error($str) {       echo '<div style="color:red;">'.$str.'</div>';   }}?>demo.php:<?php/** 可自由转载使用,请保留版权信息,谢谢使用!* Class Name : Cache (For Php5)* Version : 1.0* Description : 动态缓存类,用于控制页面自动生成缓存、调用缓存、更新缓存、删除缓存.* Author : [email&#160;protected],Junin* Author Page : http://blog.csdn.Net/sdts/* Last Modify : 2007-8-22* Remark :  1.此版本为Php5版本,本人暂没有写Php4的版本,如需要请自行参考修改(比较容易啦,不要那么懒嘛,呵呵!).  2.此版本为utf-8编码,如果网站采用其它编码请自行转换,Windows系统用记事本打开另存为,选择相应编码即可(一般ANSI),Linux下请使用相应编辑软件或iconv命令行.  3.拷贝粘贴的就不用管上面第2条了.* 关于缓存的一点感想:* 动态缓存和静态缓存的根本差别在于其是自动的,用户访问页面过程就是生成缓存、浏览缓存、更新缓存的过程,无需人工操作干预.* 静态缓存指的就是生成静态页面,相关操作一般是在网站后台完成,需人工操作(也就是手动生成).*//** 使用方法举例------------------------------------Demo1-------------------------------------------   require_once('cache.inc.php');   $cachedir = './Cache/'; //设定缓存目录   $cache = new Cache($cachedir,10); //省略参数即采用缺省设置, $cache = new Cache($cachedir);   if ($_GET['cacheact'] != 'rewrite') //此处为一技巧,通过xx.Php?cacheact=rewrite更新缓存,以此类推,还可以设定一些其它操作       $cache->load(); //装载缓存,缓存有效则不执行以下页面代码   //页面代码开始   echo date('H:i:s jS F');   //页面代码结束   $cache->write(); //首次运行或缓存过期,生成缓存------------------------------------Demo2-------------------------------------------   require_once('cache.inc.php');   $cachedir = './Cache/'; //设定缓存目录   $cache = new Cache($cachedir,10); //省略参数即采用缺省设置, $cache = new Cache($cachedir);   if ($_GET['cacheact'] != 'rewrite') //此处为一技巧,通过xx.Php?cacheact=rewrite更新缓存,以此类推,还可以设定一些其它操作       $cache->load(); //装载缓存,缓存有效则不执行以下页面代码   //页面代码开始   $content = date('H:i:s jS F');   echo $content;   //页面代码结束   $cache->write(1,$content); //首次运行或缓存过期,生成缓存------------------------------------Demo3-------------------------------------------   require_once('cache.inc.php');   define('CACHEENABLE',true);      if (CACHEENABLE) {       $cachedir = './Cache/'; //设定缓存目录       $cache = new Cache($cachedir,10); //省略参数即采用缺省设置, $cache = new Cache($cachedir);       if ($_GET['cacheact'] != 'rewrite') //此处为一技巧,通过xx.Php?cacheact=rewrite更新缓存,以此类推,还可以设定一些其它操作           $cache->load(); //装载缓存,缓存有效则不执行以下页面代码       }   //页面代码开始   $content = date('H:i:s jS F');   echo $content;   //页面代码结束   if (CACHEENABLE)       $cache->write(1,$content); //首次运行或缓存过期,生成缓存*/?>

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
华为GT3 Pro和GT4的差异是什么?华为GT3 Pro和GT4的差异是什么?Dec 29, 2023 pm 02:27 PM

许多用户在选择智能手表的时候都会选择的华为的品牌,其中华为GT3pro和GT4都是非常热门的选择,不少用户都很好奇华为GT3pro和GT4有什么区别,下面就就给大家介绍一下二者。华为GT3pro和GT4有什么区别一、外观GT4:46mm和41mm,材质是玻璃表镜+不锈钢机身+高分纤维后壳。GT3pro:46.6mm和42.9mm,材质是蓝宝石玻璃表镜+钛金属机身/陶瓷机身+陶瓷后壳二、健康GT4:采用最新的华为Truseen5.5+算法,结果会更加的精准。GT3pro:多了ECG心电图和血管及安

修复:截图工具在 Windows 11 中不起作用修复:截图工具在 Windows 11 中不起作用Aug 24, 2023 am 09:48 AM

为什么截图工具在Windows11上不起作用了解问题的根本原因有助于找到正确的解决方案。以下是截图工具可能无法正常工作的主要原因:对焦助手已打开:这可以防止截图工具打开。应用程序损坏:如果截图工具在启动时崩溃,则可能已损坏。过时的图形驱动程序:不兼容的驱动程序可能会干扰截图工具。来自其他应用程序的干扰:其他正在运行的应用程序可能与截图工具冲突。证书已过期:升级过程中的错误可能会导致此issu简单的解决方案这些适合大多数用户,不需要任何特殊的技术知识。1.更新窗口和Microsoft应用商店应用程

入职后,我才明白什么叫Cache入职后,我才明白什么叫CacheJul 31, 2023 pm 04:03 PM

事情其实是这样的,当时领导交给我一个perf硬件性能监视的任务,在使用perf的过程中,输入命令perf list,我看到了以下信息:我的任务就要让这些cache事件能够正常计数,但关键是,我根本不知道这些misses、loads是什么意思。

如何修复无法连接到iPhone上的App Store错误如何修复无法连接到iPhone上的App Store错误Jul 29, 2023 am 08:22 AM

第1部分:初始故障排除步骤检查苹果的系统状态:在深入研究复杂的解决方案之前,让我们从基础知识开始。问题可能不在于您的设备;苹果的服务器可能会关闭。访问Apple的系统状态页面,查看AppStore是否正常工作。如果有问题,您所能做的就是等待Apple修复它。检查您的互联网连接:确保您拥有稳定的互联网连接,因为“无法连接到AppStore”问题有时可归因于连接不良。尝试在Wi-Fi和移动数据之间切换或重置网络设置(“常规”>“重置”>“重置网络设置”>设置)。更新您的iOS版本:

使用cache可以提高计算机运行速度这是因为什么使用cache可以提高计算机运行速度这是因为什么Dec 09, 2020 am 11:28 AM

使用cache可以提高计算机运行速度这是因为Cache缩短了CPU的等待时间。Cache是位于CPU和主存储器DRAM之间,规模较小,但速度很高的存储器。Cache的功能是提高CPU数据输入输出的速率;Cache容量小但速度快,内存速度较低但容量大,通过优化调度算法,系统的性能会大大改善。

cache是什么存储器?cache是什么存储器?Nov 25, 2022 am 11:48 AM

cache叫做高速缓冲存储器,是介于中央处理器和主存储器之间的高速小容量存储器,一般由高速SRAM构成;这种局部存储器是面向CPU的,引入它是为减小或消除CPU与内存之间的速度差异对系统性能带来的影响。Cache容量小但速度快,内存速度较低但容量大,通过优化调度算法,系统的性能会大大改善。

Nginx缓存Cache的配置方案及相关内存占用问题怎么解决Nginx缓存Cache的配置方案及相关内存占用问题怎么解决May 23, 2023 pm 02:01 PM

nginx缓存cache的5种方案 1、传统缓存之一(404)  这个办法是把nginx的404错误定向到后端,然后用proxy_store把后端返回的页面保存。  配置:  location/{  root/home/html/;#主目录  expires1d;#网页的过期时间  error_page404=200/fetch$request_uri;#404定向到/fetch目录下  }  location/fetch/{#404定向到这里  internal;#指明这个目录不能在外部直接访

SpringBoot项目中怎么使用缓存CacheSpringBoot项目中怎么使用缓存CacheMay 16, 2023 pm 02:34 PM

前言缓存可以通过将经常访问的数据存储在内存中,减少底层数据源如数据库的压力,从而有效提高系统的性能和稳定性。我想大家的项目中或多或少都有使用过,我们项目也不例外,但是最近在review公司的代码的时候写的很蠢且low,大致写法如下:publicUsergetById(Stringid){Useruser=cache.getUser();if(user!=null){returnuser;}//从数据库获取user=loadFromDB(id);cahce.put(id,user);returnu

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),