当前位置:首页 > PHP教程 > php应用 > 列表

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

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-02 16:38:13 浏览: 评论:0 

本文章介绍了一个简单的关于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. ?>

Tags: ob_start ob_end_flush 缓存技术

分享到: