php静态化首页
浏览量:614
<?php ob_start(); //缓存首页index.html
$out1 = file_get_contents("http://www.xxx.com/index.php");
$fp = fopen("index.html","w");
if(!$fp)
{
echo "System Error";
exit();
}
else
{
fwrite($fp,$out1);
fclose($fp);
echo "Success";
}

感谢支持与鼓励~