代码如下
<?php
$nowtime=time();
$pastsec = $nowtime - $_GET["t"];
if($pastsec<600)
{
exit; //10分钟更新一次,时间可以自己调整
}
ob_start(); //打开缓冲区
include("index.php");
$content = ob_get_contents(); //得到缓冲区的内容
$content .= "\n"; //加上调用更新程序的代码文章源自灵鲨社区-https://www.0s52.com/jc/jsjc/2202.htmlfile_put_contents("index.html",$content);
if (!function_exists("file_put_contents"))
{
function file_put_contents($fn,$fs)
{
$fp=fopen($fn,"w+");
fputs($fp,$fs);
fclose($fp);
}
}
?>文章源自灵鲨社区-https://www.0s52.com/jc/jsjc/2202.html
把这行php代码放在你网站首页index.php的文件里面,文章源自灵鲨社区-https://www.0s52.com/jc/jsjc/2202.html
头部尾部都行,这样你的网站访问就飞快!文章源自灵鲨社区-https://www.0s52.com/jc/jsjc/2202.html
文章源自灵鲨社区-https://www.0s52.com/jc/jsjc/2202.html 文章源自灵鲨社区-https://www.0s52.com/jc/jsjc/2202.html
评论