一个简单至极的PHP缓存类代码


Posted in PHP onOctober 23, 2015

网上关于 PHP 缓存类的资料很多,不过这个类应该是我见过功能满足需求,但又无比简洁的一个。废话不多说,直接看代码吧!
使用说明:
1、实例化
$cache = new Cache();
2、设置缓存时间和缓存目录
$cache = new Cache(60, '/any_other_path/');
第一个参数是缓存秒数,第二个参数是缓存路径,根据需要配置。
默认情况下,缓存时间是 3600 秒,缓存目录是 cache/
3、读取缓存
$value = $cache->get('data_key');
4、写入缓存
$value = $cache->put('data_key', 'data_value');
完整实例:

$cache = new Cache(); 
 
//从缓存从读取键值 $key 的数据 
$values = $cache->get($key); 
 
//如果没有缓存数据 
if ($values == false) { 
//insert code here... 
//写入键值 $key 的数据 
$cache->put($key, $values); 
} else { 
//insert code here... 
}

Cache.class.php

<?php 
class Cache { 
private $cache_path;//path for the cache 
private $cache_expire;//seconds that the cache expires 
 
//cache constructor, optional expiring time and cache path 
public function Cache($exp_time=3600,$path="cache/"){ 
$this->cache_expire=$exp_time; 
$this->cache_path=$path; 
} 
 
//returns the filename for the cache 
private function fileName($key){ 
return $this->cache_path.md5($key); 
} 
 
//creates new cache files with the given data, $key== name of the cache, data the info/values to store 
public function put($key, $data){ 
$values = serialize($data); 
$filename = $this->fileName($key); 
$file = fopen($filename, 'w'); 
if ($file){//able to create the file 
fwrite($file, $values); 
fclose($file); 
} 
else return false; 
} 
 
//returns cache for the given key 
public function get($key){ 
$filename = $this->fileName($key); 
if (!file_exists($filename) || !is_readable($filename)){//can't read the cache 
return false; 
} 
if ( time() < (filemtime($filename) + $this->cache_expire) ) {//cache for the key not expired 
$file = fopen($filename, "r");// read data file 
if ($file){//able to open the file 
$data = fread($file, filesize($filename)); 
fclose($file); 
return unserialize($data);//return the values 
} 
else return false; 
} 
else return false;//was expired you need to create new 
} 
} 
?>

相信大家一定会喜欢这个简洁的php缓存类代码,希望对大家的学习有所帮助。

PHP 相关文章推荐
第七节 类的静态成员 [7]
Oct 09 PHP
一个很不错的PHP翻页类
Jun 01 PHP
一个php Mysql类 可以参考学习熟悉下
Jun 21 PHP
PHP教程 基本语法
Oct 23 PHP
php中调用其他系统http接口的方法说明
Feb 28 PHP
php管理nginx虚拟主机shell脚本实例
Nov 19 PHP
CentOS6.5 编译安装lnmp环境
Dec 21 PHP
php计算指定目录下文件占用空间的方法
Mar 13 PHP
PHP+Mysql+jQuery查询和列表框选择操作实例讲解
Oct 22 PHP
ThinkPHP项目分组配置方法分析
Mar 23 PHP
php微信公众号开发之音乐信息
Oct 20 PHP
PHP PDOStatement::bindParam讲解
Jan 30 PHP
10款实用的PHP开源工具
Oct 23 #PHP
PHP制作用户注册系统
Oct 23 #PHP
解决更换PHP5.4以上版本后Dedecms后台登录空白问题的方法
Oct 23 #PHP
PHP中文竖排转换实现方法
Oct 23 #PHP
浅谈php7的重大新特性
Oct 23 #PHP
php数字每三位加逗号的功能函数
Oct 22 #PHP
jQuery+PHP发布的内容进行无刷新分页(Fckeditor)
Oct 22 #PHP
You might like
用PHP实现WEB动态网页静态
2006/10/09 PHP
PHP 提取图片img标记中的任意属性的简单实例
2013/12/10 PHP
php实现文件下载简单示例(代码实现文件下载)
2014/03/10 PHP
ThinkPHP开发框架函数详解:C方法
2015/08/14 PHP
关于PHP中字符串与多进制转换函数的实例代码
2016/11/03 PHP
PHP unlink与rmdir删除目录及目录下所有文件实例代码
2018/02/07 PHP
javascript学习笔记(十七) 检测浏览器插件代码
2012/06/20 Javascript
详解Node.js如何开发命令行工具
2016/08/14 Javascript
AngularJS教程之环境设置
2016/08/16 Javascript
JS简单随机数生成方法
2016/09/05 Javascript
基于JS+Canves实现点击按钮水波纹效果
2016/09/15 Javascript
ES6新数据结构Map功能与用法示例
2017/03/31 Javascript
微信小程序实现左右列表联动
2020/05/19 Javascript
VUE前端从后台请求过来的数据进行转换数据结构操作
2020/11/11 Javascript
[39:32]2014 DOTA2国际邀请赛中国区预选赛 TongFu VS DT 第二场
2014/05/23 DOTA
python连接远程ftp服务器并列出目录下文件的方法
2015/04/01 Python
Python的字典和列表的使用中一些需要注意的地方
2015/04/24 Python
Python简单生成8位随机密码的方法
2017/05/24 Python
windows下Virtualenvwrapper安装教程
2017/12/13 Python
Python numpy 点数组去重的实例
2018/04/18 Python
Python基于分析Ajax请求实现抓取今日头条街拍图集功能示例
2018/07/19 Python
python之信息加密题目详解
2019/06/26 Python
django admin组件使用方法详解
2019/07/19 Python
英国最大的宠物食品和宠物用品网上零售商: Zooplus
2016/08/01 全球购物
bareMinerals官网:矿物质化妆品和护肤品
2018/02/04 全球购物
竞聘书格式及范文
2014/03/31 职场文书
2014年感恩母亲演讲稿
2014/05/27 职场文书
住宿生擅自离校检讨书
2014/09/22 职场文书
论群众路线学习笔记
2014/11/06 职场文书
优秀学生干部事迹材料
2014/12/24 职场文书
护士自荐信怎么写
2015/03/06 职场文书
学校百日安全活动总结
2015/05/07 职场文书
民政局2016年“六一”儿童节慰问活动总结
2016/04/06 职场文书
HR必备:销售经理聘用合同范本
2019/08/21 职场文书
关于python类SortedList详解
2021/09/04 Python
分享python函数常见关键字
2022/04/26 Python