本人给大家推一个不错php文件缓存类文件,从各方面来看本缓存类很合理并且适用于大型网站使用,php文件缓存类文件代码如下:
- <?php
- class Cache {
-
- var $CacheDir = './c';
-
- var $CacheFile = '';
-
- var $CacheTime = 0;
-
- var $CacheFound = False;
-
- var $DebugMsg = NULL;
-
- function Cache($CacheTime = 0) {
- $this->CacheTime = $CacheTime;
- }
-
- private function Run() {
-
-
-
- Return $this->CacheTime ? $this->CheckCacheFile() : $this->CleanCacheFile();
- }
- function GetCache($VistUrl,$CacheFileType = 'html')
- {
- $this->SetCacheFile($VistUrl,$CacheFileType);
-
- $fileName=$this->CheckCacheFile();
- if($fileName)
- {
- $fp = fopen($fileName,"r");
- $content_= fread($fp, filesize($fileName));
- fclose($fp);
- return $content_;
- }
- else
- {
- return false;
- }
- }
- private function SetCacheFile($VistUrl,$CacheFileType = 'html') {
- if(emptyempty($VistUrl)) {
-
- $this->CacheFile = 'index';
- }else {
-
- $this->CacheFile = is_array($VistUrl) ? implode('.',$VistUrl) : $VistUrl;
- }
- $this->CacheFile = $this->CacheDir.'/'.md5($this->CacheFile);
- $this->CacheFile.= '.'.$CacheFileType;
- }
-
- function SetCacheTime($t = 60) {
- $this->CacheTime = $t;
- }
-
- private function CheckCacheFile() {
- if(!$this->CacheTime || !file_exists($this->CacheFile)) {Return False;}
-
- $GetTime=(Time()-Filemtime($this->CacheFile))/(60*1);
-
- Clearstatcache();
- $this->Debug('Time Limit '.($GetTime*60).'/'.($this->CacheTime*60).'');
- $this->CacheFound = $GetTime <= $this->CacheTime ? $this->CacheFile : False;
- Return $this->CacheFound;
- }
-
- function SaveToCacheFile($VistUrl,$Content,$CacheFileType = 'html') {
- $this->SetCacheFile($VistUrl,$CacheFileType);
- if(!$this->CacheTime) {
- Return False;
- }
-
- if(true === $this->CheckCacheDir()) {
- $CacheFile = $this->CacheFile;
- $CacheFile = str_replace('//','/',$CacheFile);
- $fp = @fopen($CacheFile,"wb");
- if(!$fp) {
- $this->Debug('Open File '.$CacheFile.' Fail');
- }else {
- if(@!fwrite($fp,$Content)){
- $this->Debug('Write '.$CacheFile.' Fail');
- }else {
- $this->Debug('Cached File');
- };
- @fclose($fp);
- }
- }else {
-
- $this->Debug('Cache Folder '.$this->CacheDir.' Not Found');
- }
- }
-
- private function CheckCacheDir() {
- if(file_exists($this->CacheDir)) { Return true; }
-
- $Location = getcwd();
-
- $Dir = split("/", $this->CacheDir);
-
- $CatchErr = True;
- for ($i=0; $i<count($Dir); $i++){
- if (!file_exists($Dir[$i])){
-
- $CatchErr = @mkdir($Dir[$i],0777);
- }
- @chdir($Dir[$i]);
- }
-
- chdir($Location);
- if(!$CatchErr) {
- $this->Debug('Create Folder '.$this->CacheDir.' Fail');
- }
- Return $CatchErr;
- }
-
- private function CleanCacheFile() {
- if(file_exists($this->CacheFile)) {
- @chmod($this->CacheFile,777);
- @unlink($this->CacheFile);
- }
-
- $this->CacheFound = False;
- Return $this->CacheFound;
- }
-
- function Debug($msg='') {
- if(DEBUG) {
- $this->DebugMsg[] = '[Cache]'.$msg;
- }
- }
-
- function GetError() {
- Return emptyempty($this->DebugMsg) ? '' : "<br>n".implode("<br>n",$this->DebugMsg);
- }
- }
- ?>
|