用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > php教程

php ob_start() ob_end_flush()缓存技术简单应用

时间:2015-01-23  来源:西部数据  作者:西部数据

本文章介绍了一个简单的关于php入门篇-缓存技术简单应用,有需要的朋友可以看看,这里是利用了ob_start(); ob_end_flush(); 来实例的,代码如下:

  1. <?php  
  2. // define the path and name of cached file  
  3. $cachefile = 'cached-files/'.date('M-d-Y').'.php';  
  4. // define how long we want to keep the file in seconds. I set mine to 5 hours.  
  5. $cachetime = 18000;  
  6. // Check if the cached file is still fresh. If it is, serve it up and exit.  
  7. if (file_exists($cachefile) && time() - $cachetime < filemtime($cachefile)) {  
  8. include($cachefile);  
  9. exit;  
  10. }  
  11. // if there is either no file OR the file to too old, render the page and capture the HTML. //开源代码phpfensi.com 
  12. ob_start();  
  13. ?>  
  14. <html>  
  15. output all your html here.  
  16. </html>  
  17. <?php  
  18. // We're done! Save the cached content to a file  
  19. $fp = fopen($cachefile'w');  
  20. fwrite($fp, ob_get_contents());  
  21. fclose($fp);  
  22. // finally send browser output  
  23. ob_end_flush();  
  24. ?>
来顶一下
返回首页
返回首页
推荐资讯
WiFi太不安全:7岁女孩11分钟内入侵公共网络 WiFi太不安全:7岁女孩11分钟内入侵近期刚刚发布研究说WiFi网络能获得人们手机里多少私人信息,
不服跑个分?人工智能也出现“刷分”乱象 不服跑个分?人工智能也出现“刷分2014年,人工智能领域突然爆发,成为了科研和科技创业的热门
相关文章
栏目更新
栏目热门