最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
简单实例php 缓存文件生成技术实例
时间:2022-07-02 09:25:56 编辑:袖梨 来源:一聚教程网
class Cache
{
protected $_cacheDir;
public function __construct()
{
$this->_cacheDir = "./cache";
}
public function setCacheDir($cacheDir)
{
if(empty($cacheDir)){
$this->_cacheDir = $this->_cacheDir;
}else{
$this->_cacheDir = $cacheDir;
}
}
public function getCache($name)
{
$file_path = $this->_cacheDir.'/namma_cache-'.$name;
if(!file_exists($file_path))
{
return false;
}
$handle = @fopen($file_path,'rb');
$data = @fread($handle,filesize($file_path));
return $this->unformatData($data);
@flose($handle);
}
public function setCache($name,$data)
{
$file_path = $this->_cacheDir.'/namma_cache-'.$name;
$data = $this->formatData($data);
$fp = fopen($file_path, 'w');
fwrite($fp,$data);
fclose($fp);
return $file_path;
}
public function formatData($data)
{
return serialize($data);
}
public function unformatData($data)
{
return unserialize($data);
}
}
相关文章
- 胜利女神新的希望2B技能怎么样 联动角色2B强度解析 07-10
- 币安手续费总览_币安交易平台如何节省(减少)手续费? 07-10
- 无畏契约手游獠犬武器怎么样 源能行动獠犬性能详解 07-10
- 胜利女神新的希望A2怎么玩 A2技能机制详细解析 07-10
- 《QQ》群主转让给管理员方法 07-10
- swap的价格和价值 07-10