分页程序设计理解page.class.php
程序员文章站
2024-01-30 16:00:40
...
关于分页程序,我的理解是当点击某个链接如:[下一页]就显示下一页对应的数据.
这本质是对数据库的操作,简而言之换成SQL语句就是 select some_fields from table limit Offset Num;
这里Num是固定的,比如每页显示10条数据
关键是Offset,即偏移量,每点击下一页时候,这个值就会发生变化;如:0,10 10,10 20,10....
在页面上最终显示的只有两个东西,一个是对应的数据(图片,文字等...),一个是 分页链接(共xx条记录,每页显示10条,当前第1/32页 [首页] [上页] [下页] [尾页] )
下面具体实现代码
count=$count; $this->meiye=$meiye; $this->pages=ceil($this->count/$this->meiye); $this->now_page=$this->get_now_page(); $this->url=$url; $this->prev=$this->get_prev_page(); $this->next=$this->get_next_page(); $this->offset=$this->get_offset(); $this->style=$this->get_style($style); } //获得当前是第几页 private function get_now_page(){ return isset($_GET['page'])?$_GET['page']:1; } //获得上一页 private function get_prev_page(){ return $this->now_page-1?$this->now_page-1:false; } //获得下一页 private function get_next_page(){ return $this->now_page+1>$this->pages?false:$this->now_page+1; } //获得偏移量 private function get_offset(){ return $this->now_pagenow_page>0?0:($this->now_page-1)*($this->meiye); } //获得分页链接风格默认是: //共30条记录,每页显示4条,当前第1/8页 [首页] [下一页] [尾页] private function get_style($s){ $str=''; if ($this->pages>1) { if($s==1){ $str.="共{$this->count}条记录,每页显示{$this->meiye}条,当前第{$this->now_page}/{$this->pages}页 "; $str.="[首页] "; $this->prev?$str.="[上一页] ":false; $this->next?$str.="[下一页] ":false; $str.="[尾页]"; }else{ $str.= "当前第{$this->now_page}/{$this->pages}页"; $str.="[首页] "; $this->prev?$str.="[上一页] ":false; for ($j = 1; $j pages; $j++) { $str.="url?page=$j>$j "; } $this->next?$str.="[下一页] ":false; $str.="[尾页]"; } return $str; } }}
当使用的时候,取出偏移量Offset,和style
acount(); //实例化分页类(总条数,每页显示多少条记录,执行脚本,样式) $p=new page($c,4,'page3.php',1); //获得偏移量 $of=$p->offset; //查询数据库 $res=$m->select('pic','','',"$of,4"); //便利结果集$res //输出分页链接 echo $p->style;