-
一个简洁实用的PHP缓存类完整实例
这篇文章主要介绍了一个简洁实用的PHP缓存类完整实例,缓存的应用对于php大型项目的开发来说至关重要,需要的朋友可以参考下
本文完整描述了一个简洁实用的PHP缓存类,可用来检查缓存文件是否在设置更新时间之内、清除缓存文件、根据当前动态文件生成缓存文件名、连续创建目录、缓存文件输出静态等功能。对于采用PHP开发CMS系统来说,离不开对缓存的处理,合理利用好缓存可有效的提高程序执行效率。
php缓存类文件完整代码如下:
- <?php
- /*
- * 缓存类 cache
- */
- class cache {
- //缓存目录
- var $cacheRoot = "./cache/";
- //缓存更新时间秒数,0为不缓存
- var $cacheLimitTime = 0;
- //缓存文件名
- var $cacheFileName = "";
- //缓存扩展名
- var $cacheFileExt = "php";
- /*
- * 构造函数
- * int $cacheLimitTime 缓存更新时间
- */
- function cache( $cacheLimitTime ) {
- if( intval( $cacheLimitTime ) )
- $this->cacheLimitTime = $cacheLimitTime;
- $this->cacheFileName = $this->getCacheFileName();
- ob_start();
- }
- /*
- * 检查缓存文件是否在设置更新时间之内
- * 返回:如果在更新时间之内则返回文件内容,反之则返回失败
- */
- function cacheCheck(){
- if( file_exists( $this->cacheFileName ) ) {
- $cTime = $this->getFileCreateTime( $this->cacheFileName );
- if( $cTime + $this->cacheLimitTime > time() ) {
- echo file_get_contents( $this->cacheFileName );
- ob_end_flush();
- exit;
- }
- }
- return false;
- }
- /*
- * 缓存文件或者输出静态
- * string $staticFileName 静态文件名(含相对路径)
- */
- function caching( $staticFileName = "" ){
- if( $this->cacheFileName ) {
- $cacheContent = ob_get_contents();
- ob_end_flush();
- if( $staticFileName ) {
- $this->saveFile( $staticFileName, $cacheContent );
- }
- if( $this->cacheLimitTime )
- $this->saveFile( $this->cacheFileName, $cacheContent );
- }
- }
- /*
- * 清除缓存文件
- * string $fileName 指定文件名(含函数)或者all(全部)
- * 返回:清除成功返回true,反之返回false
- */
- function clearCache( $fileName = "all" ) {
- if( $fileName != "all" ) {
- $fileName = $this->cacheRoot . strtoupper(md5($fileName)).".".$this->cacheFileExt;
- if( file_exists( $fileName ) ) {
- return @unlink( $fileName );
- }else return false;
- }
- if ( is_dir( $this->cacheRoot ) ) {
- if ( $dir = @opendir( $this->cacheRoot ) ) {
- while ( $file = @readdir( $dir ) ) {
- $check = is_dir( $file );
- if ( !$check )
- @unlink( $this->cacheRoot . $file );
- }
- @closedir( $dir );
- return true;
- }else{
- return false;
- }
- }else{
- return false;
- }
- }
- /*根据当前动态文件生成缓存文件名*/
- function getCacheFileName() {
- return $this->cacheRoot . strtoupper(md5($_SERVER["REQUEST_URI"])).".".$this->cacheFileExt;
- }
- /*
- * 缓存文件建立时间
- * string $fileName 缓存文件名(含相对路径)
- * 返回:文件生成时间秒数,文件不存在返回0
- */
- function getFileCreateTime( $fileName ) {
- if( ! trim($fileName) ) return 0;
- if( file_exists( $fileName ) ) {
- return intval(filemtime( $fileName ));
- }else return 0;
- }
- /*
- * 保存文件
- * string $fileName 文件名(含相对路径)
- * string $text 文件内容
- * 返回:成功返回ture,失败返回false
- */
- function saveFile($fileName, $text) {
- if( ! $fileName || ! $text ) return false;
- if( $this->makeDir( dirname( $fileName ) ) ) {
- if( $fp = fopen( $fileName, "w" ) ) {
- if( @fwrite( $fp, $text ) ) {
- fclose($fp);
- return true;
- }else {
- fclose($fp);
- return false;
- }
- }
- }
- return false;
- }
- /*
- * 连续建目录
- * string $dir 目录字符串
- * int $mode 权限数字
- * 返回:顺利创建或者全部已建返回true,其它方式返回false
- */
- function makeDir( $dir, $mode = "0777" ) {
- if( ! $dir ) return 0;
- $dir = str_replace( "\\", "/", $dir );
- $mdir = "";
- foreach( explode( "/", $dir ) as $val ) {
- $mdir .= $val."/";
- if( $val == ".." || $val == "." || trim( $val ) == "" ) continue;
- if( ! file_exists( $mdir ) ) {
- if(!@mkdir( $mdir, $mode )){
- return false;
- }
- }
- }
- return true;
- }
- }
- ?>
使用该缓存类的时候可将以上代码保存为cache.php,具体用法如下所示:
- include( "cache.php" );
- $cache = new cache(30);
- $cache->cacheCheck();
- echo date("Y-m-d H:i:s");
- $cache->caching();
出处:http://www.phpfensi.com/php/20210325/14001.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式