time()){echo file_get_contents($file);}else{unlink($file);//删除过期..._静态html数据存储">
赞
踩
static.php 文件
$file = "static.html";
$ctime =filectime($file);
$expr = 3600*24*10;//静态文件有效期,十天
if(file_exists($file)) {
if($ctime+$expr> time()){
echo file_get_contents($file);
}else{
unlink($file);//删除过期的静态页文件
ob_start();
//从数据库取出数据写入 static.html
$content = ob_get_contents();
file_put_contents($file,$content);//写入内容到对应静态文件中
ob_end_flush();
}
}else{
ob_start();
//从数据库取出数据写入 static.html
$content = ob_get_contents();
file_put_contents($file,$content);//写入内容到对应静态文件中
ob_end_flush();
}
?>
static.html 页面
静态页面Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。