您的位置:首页 > 网络编程 > PHP

php技术生成静态页面的实现

日期:2007-12-04 01:41:17 点击: 来自: 作者:
3/3  |‹ ‹‹ 1 2 3

  二、分页问题。

  如我们指定分页时,每页20篇。某子频道列表内文章经数据库查询为45条,则,首先我们通过查询得到如下参数:1,总页数;2,每页篇数。第二步, for ($i = 0; $i < allpages; $i++),页面元素获取,分析,文章生成,都在此循环中执行。不同的是,die ("创建文件".$filename."成功!";这句去掉,放到循环后的显示,因为该语句将中止程序执行。例:

  Code:

以下是引用片段:
  $fp = fopen ("temp.html","r");
  $content = fread ($fp,filesize ("temp.html"));
  $onepage = ''''20'''';
  $sql = "select id from article where channel=''''$channelid''''";
  $query = mysql_query ($sql);
  $num = mysql_num_rows ($query);
  $allpages = ceil ($num / $onepage);
  for ($i = 0;$i<$allpages; $i++){
  if ($i == 0){
  $indexpath = "index.html";
  } else {
  $indexpath = "index_".$i."html";
  }
  $start = $i * $onepage;
  $list = '''''''';
  $sql_for_page = "select name,filename,title from article where channel=''''$channelid'''' limit $start,$onepage";
  $query_for_page = mysql_query ($sql_for_page);
  while ($result = $query_for_page){
  $list .= ''''''''.$title.''''
  '''';
  }
  $content = str_replace ("{ articletable }",$list,$content);
  if (is_file ($indexpath)){
  @unlink ($indexpath); //若文件已存在,则删除
  }
  $handle = fopen ($indexpath,"w"); //打开文件指针,创建文件
  /*
  检查文件是否被创建且可写
  */
  if (!is_writable ($indexpath)){
  echo "文件:".$indexpath."不可写,请检查其属性后重试!"; //修改为echo
  }
  if (!fwrite ($handle,$content)){ //将信息写入文件
  echo "生成文件".$indexpath."失败!"; //修改为echo
  }
  fclose ($handle); //关闭指针
  }
  fclose ($fp);
  die ("生成分页文件完成,如生成不完全,请检查文件权限系统后重新生成!");
  ?>

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

  在实际文章系统处理过程当中,还有许多问题有待考虑,与动态页面不同之处,需注意的地方还有很多。但大致思路即是如此,其它方面可举一反三而得。

本文出自:http://www.otm.cn 作者:Matrix@Two_Max

3/3  |‹ ‹‹ 1 2 3
More..素材图片 Picture Navigation
  •  彩云之南
  • 《超宽屏壁纸》带你体验大自然的魅力
  • 18张最美丽的北京风光 1600X1200 像素
  • 2ADVANCED 2006 壁纸系列
PHP热门 Class Hot
PHP推荐 Class Commend
版权所有:中国网站资源 2005- 未经授权禁止复制或建立镜像 This Site Tech:XHTML+DIV+CSS+Javascript
CopyRight ® 2005- www.Chinaddv.com online services. all rights reserved. ICP06016627
Optimized to 1024x768 to Firefox,Netscape,Opera,MS-IE6+.