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

php生成静态页面的详细教程

程序员文章站 2022-06-02 20:37:49
...
  1. { title }
  2. this is a { file } file's templets
复制代码

PHP处理:  templetest.php

  1. $title = "测试模板";
  2. $file = "TwoMax Inter test templet,author:Matrix@Two_Max";
  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. echo $content;
  8. ?>
复制代码

  模板解析处理,即将经PHP脚本解析处理后得出的结果填充(content)进模板的处理过程。通常借助于模板类。目前较流行的模板解析类有phplib,smarty,fastsmarty等等。模板解析处理的原理通常为替换。也有些程序员习惯将判断,循环等处理放进模板文件中,用解析类处理,典型应用为block概念,简单来说即为一个循环处理。由PHP脚本指定循环次数,如何循环代入等,再由模板解析类具体实施这些操作。

  如何用PHP生成静态文件。

  PHP生成静态页面并不是指PHP的动态解析,输出HTML页面,而是指用PHP创建HTML页面。同时因为HTML的不可写性,我们创建的HTML若有修改,则需删掉重新生成即可。(当然你也可以选择用正则进行修改,但个人认为那样做倒不如删掉重新生成来得快捷,有些得不偿失。)

  用过PHP文件操作函数的PHP FANS知道,PHP中有一个文件操作函数fopen,即打开文件。若文件不存在,则尝试创建。这即是PHP可以用来创建HTML文件的理论基础。只要用来存放HTML文件的文件夹有写权限(即权限定义0777),即可创建文件。(针对UNIX系统而言,Win系统无须考虑。)仍以上例为例,若我们修改最后一句,并指定在test目录下生成一个名为test.html的静态文件:

  1. $title = "测试模板";
  2. $file = "TwoMax Inter test templet,author:Matrix@Two_Max";
  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. // echo $content;
  8. $filename = "test/test.html";
  9. $handle = fopen ($filename,"w"); //打开文件指针,创建文件
  10. /*
  11.  检查文件是否被创建且可写
  12. */
  13. if (!is_writable ($filename)){
  14. die ("文件:".$filename."不可写,请检查其属性后重试!");
  15. }
  16. if (!fwrite ($handle,$content)){ //将信息写入文件
  17. die ("生成文件".$filename."失败!");
  18. }
  19. fclose ($handle); //关闭指针
  20. die ("创建文件".$filename."成功!");
  21. ?>
复制代码

常见问题解决方案参考: 一,文章列表问题: 在数据库中创建字段,记录文件名,每生成一个文件,将自动生成的文件名存入数据库,对于推荐文章,只需指向存放静态文件的指定文件夹中的该页面即可。利用PHP操作处理文章列表,存为字符串,生成页面时替换此字符串即可。如,在页面中放置文章列表的表格加入标记{ articletable },而在PHP处理文件中:

  1. $title = "测试模板";
  2. $file = "TwoMax Inter test templet,author:Matrix@Two_Max";
  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. $list .= ''.$result['title'].'';
  13. }
  14. $content .= str_replace ("{ articletable }",$list,$content);
  15. //生成列表结束
  16. // echo $content;
  17. $filename = "test/test.html";
  18. $handle = fopen ($filename,"w"); //打开文件指针,创建文件
  19. /*
  20.  检查文件是否被创建且可写
  21. */
  22. if (!is_writable ($filename)){
  23. die ("文件:".$filename."不可写,请检查其属性后重试!");
  24. }
  25. if (!fwrite ($handle,$content)){ //将信息写入文件
  26. die ("生成文件".$filename."失败!");
  27. }
  28. fclose ($handle); //关闭指针
  29. die ("创建文件".$filename."成功!");
  30. ?>
复制代码

二,分页问题。   如我们指定分页时,每页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;$iif ($i == 0){
  9. $indexpath = "index.html";
  10. } else {
  11. $indexpath = "index_".$i."html";
  12. }
  13. $start = $i * $onepage;
  14. $list = '';
  15. $sql_for_page = "select name,filename,title from article where channel='$channelid' limit $start,$onepage";
  16. $query_for_page = mysql_query ($sql_for_page);
  17. while ($result = $query_for_page){
  18. $list .= ''.$title.'';
  19. }
  20. $content = str_replace ("{ articletable }",$list,$content);
  21. if (is_file ($indexpath)){
  22. @unlink ($indexpath); //若文件已存在,则删除
  23. }
  24. $handle = fopen ($indexpath,"w"); //打开文件指针,创建文件
  25. /*
  26.   检查文件是否被创建且可写
  27. */
  28. if (!is_writable ($indexpath)){
  29. echo "文件:".$indexpath."不可写,请检查其属性后重试!"; //修改为echo
  30. }
  31. if (!fwrite ($handle,$content)){ //将信息写入文件
  32. echo "生成文件".$indexpath."失败!"; //修改为echo
  33. }
  34. fclose ($handle); //关闭指针
  35. }
  36. fclose ($fp);
  37. die ("生成分页文件完成,如生成不完全,请检查文件权限系统后重新生成!");
  38. ?>
复制代码

其中如其它数据生成,数据输入输出检查,分页内容指向等可酌情在页面中加入。

您可能感兴趣的文章: php生成静态页面的三种方法与代码详解 php生成静态页面函数(php2html)的例子 php生成静态页面的方法(三个函数) 细说php生成静态文件之模板与缓存 php写的一个生成静态页面的类 虚拟主机上定时自动生成静态页面的方法 php生成静态文件的二种方法 php生成静态html文件的原理分析 smarty生成静态页面的方法 了解php生成静态HTML文件的原理 PHP生成静态页面的方法 php生成静态html文件的三种方法