首页 > 代码库 > php页面缓存的使用方法
php页面缓存的使用方法
<?php /**ob_start(); ob_get_contents(); ob_end_flush(); ** **php页面缓存的使用方法,php页面缓存的小例子,如果数据库查询量较大,可以用cache来解决 **/ function cache_start($dir,$expiretime){ $filename = $dir.‘\\‘.sha1($_SERVER[‘REQUEST_URI‘]).‘.html‘; ob_start(); if(file_exists($filename) && (time()- filemtime($filename)<$expiretime)){ include($filename); ob_end_flush(); exit(); } mkdir($dir); } function cache_end($dir){ $filename = $dir.‘\\‘.sha1($_SERVER[‘REQUEST_URI‘]).‘.html‘; echo $filename; $fp = fopen($filename,‘w‘); fwrite($fp,ob_get_contents()); fclose($fp); ob_end_flush(); } $dir = "D:\\\\php"; cache_start($dir, 10); cache_end($dir);
本文出自 “王尼美的成人之路” 博客,请务必保留此出处http://8335914.blog.51cto.com/8325914/1582904
php页面缓存的使用方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。