欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php生成静态页面的三种方法与代码详解

程序员文章站 2024-01-09 14:59:46
...
  1. ob_start();
  2. @readfile("http://bbs.it-home.org/");
  3. $text = ob_get_flush();
  4. $myfile = fopen("myfile.html","w");
  5. $text =
  6. str_replace ("{counent}",$string,$text);
  7. fwrite($myfile,$text);
  8. ob_clean();
  9. ?>
复制代码

因为就算要生成静态页面,动态读取那部分也是要保留的,把数据插入数据库后,把url传递给readfile函数,然后读入缓存,fwrite一下就可以生成静态页面,这个是驼驼最欣赏的一种作法。代码行数最少,效率最高。http://bbs.it-home.org/是一个裸页,也就是单纯的内容,没有头,尾,菜单。这样才能比较*的定制自己的模版myfile.html。如果仅仅是要求生成静态页的话,这样基本上就满足需求了。

二、普通生成静态html页 fread进来页面,然后str_replace替换 首先,创建最终内容页:

  1. $title = "http://siyizhu.com测试模板";
  2. $file = "TwoMax Inter test templet,
    author:[email=Matrix@Two_Max]Matrix@Two_Max[/email]";
  3. $fp = fopen ("temp.html","r");
  4. $content = fread($fp,filesize ("temp.html"));
  5. $content = str_replace("{file}",$file,$content);
  6. $content = str_replace("{title}",$title,$content);
  7. $filename = "test/test.html";
  8. $handle = fopen ($filename,"w"); //打开文件指针,创建文件
  9. /*  检查文件是否被创建且可写 */
  10. if (!is_writable ($filename))
  11. {
  12. die ("文件:".$filename."不可写,请检查其属性后重试!");
  13. }
  14. if (!fwrite ($handle,$content))
  15. { //将信息写入文件
  16. die ("生成文件".$filename."失败!");
  17. }
  18. fclose ($handle); //关闭指针
  19. die ("创建文件".$filename."成功!");
  20. ?>
复制代码

这一步只是单纯的变量替换即可。 如果要生成静态的列表页面的话,原理也是一样,用程序来生成文章列表,把它当成一个大的变量,替换模版中的变量,列表的翻页页是如此。 当然,如果有信息更新的话,列表翻页也是要重新生成的。

  1. $title = "http://";
  2. $file = "TwoMax Inter test templet,
    author:[email=Matrix@Two_Max]Matrix@Two_Max[/email]";
  3. $fp = fopen ("temp.html","r");
  4. $content = fread ($fp,filesize ("temp.html"));
  5. $content = str_replace ("{file}",$file,$content);
  6. $content = str_replace ("{title}",$title,$content);
  7. // 生成列表开始
  8. $list = '';
  9. $sql = "select id,title,filename from article";
  10. $query = mysql_query ($sql);
  11. while($result = mysql_fetch_array ($query))
  12. {
  13. $list .= ''.$result['title'].'
    ';
  14. }
  15. $content .= str_replace("{articletable}",$list,$content);//生成列表结束
  16. // echo $content;
  17. $filename = "test/test.html";
  18. $handle = fopen ($filename,"w");
  19. //打开文件指针,创建文件
  20. /* 检查文件是否被创建且可写 */
  21. if(!is_writable ($filename))
  22. {
  23. die ("文件:".$filename."不可写,请检查其属性后重试!");
  24. }
  25. if(!fwrite($handle,$content))
  26. { //将信息写入文件
  27. die ("生成文件".$filename."失败!");
  28. }
  29. fclose($handle); //关闭指针
  30. die ("创建文件".$filename."成功!");
  31. ?>
复制代码

关于翻页: 如我们指定分页时,每页20篇。某子频道列表内文章经数据库查询为45条,则,首先我们通过查询得到如下参数:1,总页数;2,每页篇数。第二步,for ($i = 0; $i

  1. $fp = fopen ("temp.html","r");
  2. $content = fread ($fp,filesize ("temp.html"));
  3. $onepage = '20';
  4. $sql = "select id from article where channel='$channelid'";
  5. $query = mysql_query ($sql);
  6. $num = mysql_num_rows ($query);
  7. $allpages = ceil ($num / $onepage);
  8. for ($i = 0;$i{
  9. if ($i == 0)
  10. {
  11. $indexpath = "index.html";
  12. }
  13. else
  14. {
  15. $indexpath = "index_".$i."html";
  16. }
  17. $start = $i * $onepage;
  18. $list = '';
  19. $sql_for_page = "select name,filename,title from article where channel='$channelid' limit $start,$onepage";
  20. $query_for_page = mysql_query ($sql_for_page);
  21. while ($result = $query_for_page)
  22. {
  23. $list .= ''.$title.'
    ';
  24. }
  25. $content = str_replace("{articletable}",$list,$content);
  26. if (is_file ($indexpath))
  27. {
  28. @unlink ($indexpath); //若文件已存在,则删除
  29. }
  30. $handle = fopen ($indexpath,"w"); //打开文件指针,创建文件
  31. /*检查文件是否被创建且可写 */
  32. if (!is_writable ($indexpath))
  33. {
  34. echo "文件:".$indexpath."不可写,请检查其属性后重试!"; //修改为echo
  35. }
  36. if (!fwrite ($handle,$content))
  37. {//将信息写入文件
  38. echo "生成文件".$indexpath."失败!"; //修改为echo
  39. }
  40. fclose ($handle); //关闭指针
  41. }
  42. fclose ($fp);
  43. die ("生成分页文件完成,如生成不完全,请检查文件权限系统后重新生成!");
  44. ?>
复制代码

三、smarty模版生成静态页面 smarty自己有一个fetch函数,其功用有点类似于fread()可以用来生成静态的页面。 有关smarty技术,大家可以看看这里的几篇文章: 1)、有关smarty的基本设置 2)、有关smarty缓存的应用 3)、smarty生成静态页面的方法 4)、php模板引擎Smarty详细介绍

  1. include("Smarty.class.php");
  2. $smarty = new Smarty;
  3. $smarty->caching = true;
  4. // only do db calls if cache doesn't exist
  5. if(!$smarty->is_cached("index.tpl"))
  6. {// dummy up some data
  7. $address = "245 N 50th";
  8. $db_data = array("City" => "Lincoln", "State" => "Nebraska", "Zip" => "68502");
  9. $smarty->assign("Name","Fred");
  10. $smarty->assign("Address",$address);
  11. $smarty->assign($db_data);
  12. }// capture the output
  13. $output = $smarty->fetch("index.tpl");
  14. //这个地方算是关键// do something with $output here
  15. echo $output; //hoho 看到output的结果了吧 然后呢?fwrite一下,我们就得到我们所要的结果了。
  16. $fp = fopen("archives/2013/05/19/0001.html", "w");
  17. fwrite($fp, $content);
  18. fclose($fp);
  19. ?>
复制代码
复制代码 代码如下:

  1. ob_start();
  2. echo "Hello World!";
  3. $content = ob_get_contents();//取得php页面输出的全部内容
  4. $fp = fopen("archives/2013/05/19/0001.html", "w");
  5. fwrite($fp, $content);
  6. fclose($fp);
  7. ?>
复制代码

附注: 可以生成静态页面的blog或者论坛程序,都是通过手动点击后台“生成html页”的按钮来“半自动”生成html的。

您可能感兴趣的文章: php生成静态页面函数(php2html)的例子 php生成静态页面的方法(三个函数) php生成html静态页面的方法参考 php写的一个生成静态页面的类 将数据库中的所有内容生成html静态页面的代码 虚拟主机上定时自动生成静态页面的方法 php生成静态页面的详细教程 apache中访问不了伪静态页面的解决方法 php写的关于静态页面的蜘蛛爬行记录的代码 smarty生成静态页面的方法 PHP生成静态页面的方法 apache访问不了伪静态页面的解决方法

上一篇:

下一篇: