静态文件缓存一般是指在web 应用中,将图片、js、css、视频、html等静态文件或资源保存到磁盘中,以提高资源响应时间,减少服务器压力和资源开销的一门缓存技术。
实现静态缓存
<?php class File{private $_dir;public function __construct(){$this->_dir = dirname(__FILE__).'/files';
}/**
* 静态缓存的文件处理
* @param string $file 文件名
* @param string $value 文件内容
* @param string $path 自定义静态文件存放路径
* return string 返回值为文件内容
*/ public function cacheData($file, $value='', $path = ''){# 拼接文件名
$filename = $this->_dir.$path.'/'.$file;# 写入缓存if ($value !== '') {# 删除缓存if (is_null($value)) {return unlink($filename);
}
$dir = dirname($filename);# 判断目录是否存在if (!is_dir($dir)) {
mkdir($dir,0777);
}return file_put_contents($filename, json_encode($value));# 读取缓存
}else{if (!is_file($filename)) {return false;
}else{# 解析json字符串并返回return json_decode(file_get_contents($filename),true);
}
}
}
}
测试静态缓存
生成静态缓存文件
$file = new File;
$data=file_get_contents(dirname(__FILE__).'/'.'schedule.html');
$file->cacheData('schedule.html',$data);
读取静态缓存文件
$file = new File;
$data=file_get_contents(dirname(__FILE__).'/'.'schedule.html');
print_r($file->cacheData('schedule.html'));
删除静态缓存文件
$file = new File;
$data=file_get_contents(dirname(__FILE__).'/'.'schedule.html');
$file->cacheData('schedule.html',null);
END
技术以内 | 技术以外 技术栈 | 小感悟 效率工具 | 必备技能 你的效率有多高,决定你能跑多快