php ob_start() ob_end_flush()缓存技术简单应用
发布:smiling 来源: PHP粉丝网 添加日期:2014-09-02 16:38:13 浏览: 评论:0
本文章介绍了一个简单的关于php入门篇-缓存技术简单应用,有需要的朋友可以看看,这里是利用了ob_start(); ob_end_flush(); 来实例的,代码如下:
- <?php
- // define the path and name of cached file
- $cachefile = 'cached-files/'.date('M-d-Y').'.php';
- // define how long we want to keep the file in seconds. I set mine to 5 hours.
- $cachetime = 18000;
- // Check if the cached file is still fresh. If it is, serve it up and exit.
- if (file_exists($cachefile) && time() - $cachetime < filemtime($cachefile)) {
- include($cachefile);
- exit;
- }
- // if there is either no file OR the file to too old, render the page and capture the HTML. //开源代码phpfensi.com
- ob_start();
- ?>
- <html>
- output all your html here.
- </html>
- <?php
- // We're done! Save the cached content to a file
- $fp = fopen($cachefile, 'w');
- fwrite($fp, ob_get_contents());
- fclose($fp);
- // finally send browser output
- ob_end_flush();
- ?>
Tags: ob_start ob_end_flush 缓存技术
- 上一篇:PHP异步调用socket简单实例
- 下一篇:php获取google pr 值的代码
相关文章
- ·php ob_start()实现图片存入变量程序(2014-03-18)
- ·PHP缓冲ob_start和页面文件缓存(2014-07-29)
- ·php基于ob_start(ob_gzhandler)实现网页压缩功能的方法(2018-08-02)
- ·php缓冲 output_buffering和ob_start使用介绍(2020-09-01)
- ·PHP使用ob_start生成html页面的方法(2021-04-24)
- ·php利用ob_start()清除输出和选择性输出的方法(2021-08-30)
- ·PHP 9 大缓存技术总结(2021-06-18)
- ·PHP中常见的缓存技术实例分析(2021-06-18)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)