html怎么用php重写,php正则匹配重写html图片img路...-php简单页面缓存的实现代码-php计算距离的代码一例_169IT.COM...

代码如下:

/*

* php 简单缓存

* by http://www.

**/

// 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.

ob_start();

?>

output all your html here.

// 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();

?>

查看详细:http://wesbos.com/simple-php-page-caching-technique/

您可能感兴趣的文章:

php缓存函数简介

一个php网站缓存代码分享

php页面缓存ob系列函数的相关介绍

php禁止页面缓存的代码

有关php的缓存技术介绍

一个php的页面缓存类

一个php禁止页面缓存的函数

细说PHP下的缓存技术

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值