/*ob_start():是打开缓冲区的,就是要把您需要生成的静态文件的内容缓存在这里;
ob_get_contents():是读出缓冲区里的内容,下面有代码为例;
ob_end_clean():这个比较重要,只有使用了这个函数后,缓冲区里的内容才会读*/
ob_start();
require("../index.php");//模板页面
$text = ob_get_contents();
ob_end_clean();
$myfile = fopen("../index.html","w"); //index.html要生成的静态页面
//$text = str_replace ("{counent}",$string,$text);
fwrite($myfile,$text)or die("写文件出错");
php生成静态html页面
最新推荐文章于 2024-11-08 17:47:43 发布