php静态页面-文章-关尔先生

php静态页面 随笔

php批量输出静态页面

布爱者2016-10-20 17:29:59
//循环执行以下代码,就批量生成了。文件名循环产生的自定义的有固定格式的
$gid  = $_GET['gid']+0;//id  

$goods_statis_file = "goods_file_".$gid.".html";//对应静态页文件名

if(file_exists($goods_statis_file)){  
            unlink($goods_statis_file);//删除之前存在的静态页文件  
}
            ob_start();                        //开启缓存读取功能
            //include ("xxx.html");//加载模板  
            //从数据库读取数据,并赋值给相关变量  
            //echo 内容
            //include ("xxx.html");//加载模板  
   
            $content = ob_get_contents();//把上面输出在缓存的内容赋值给$content变量  
            file_put_contents($goods_statis_file,$content);//写入内容到对应静态文件中  
            ob_end_flush();//关闭缓存读取功能   


上一篇:照片墙与瀑布流

下一篇:内容创作的SEO原则

本文链接: http://www.nanshanqiao.com/zz_article/8.html

暂无评论

评论