缓存PHP页面的代码,可以减轻CPU和MYSQL负担
时间:2008-05-13 来源:剑心通明
使用前,先在根目录创建“cache”文件夹,然后运行1.php,第一次运行和第二次运行速度差异很大。
欢迎熟悉PHP的朋友使用和提意见。
使用方法:(请保存为1.php)
CODE:
endCache();
?>
源代码:(请保存为'arrcache.php')
CODE:
endCache();//在文件最后写入
*
* 说明:
*
* class ArrCache(string path,[int time],[string type]);
* path: cache文件保存目录,从根目录算起,首尾不需要“/”
* time: 缓存时间,默认120秒
* type: 缓存文件后缀,默认“txt”
*
* void endCache();
* 在页面最后写上,否则这行后边的数据不会被缓存。
*
*/
ob_start();
class ArrCache
{
//构造函数
function ArrCache($path,$time = 120,$type = 'txt')
{
$this->path = $path;
$this->time = $time;
$this->fileType = $type;
$this->fileName = $_SERVER['DOCUMENT_ROOT'].'\\'.$this->path.'\\'.md5($_SERVER['URL'].'?'.$_SERVER['QUERY_STRING']).'.'.$this->fileType;
if (file_exists($this->fileName) && ((filemtime($this->fileName)+$this->time) > time()))
{
$fp = fopen($this->fileName,"r");
echo fread($fp,filesize($this->fileName));
fclose($fp);
ob_end_flush();
exit;
}
}
//在文件最后加入这行,输出所有缓存内容,并且写入缓存文件。
function endCache()
{
$fp = fopen($this->fileName,"w");
fwrite($fp,ob_get_contents());
fclose($fp);
ob_end_flush();
}
}//end class
?>
相关阅读 更多 +