php google 风格分页代码
public function showctrlpanel_g($halfper = 5) {
$re = '
酷纬企业网站管理系统Kuwebs是酷纬信息开发的为企业网站提供解决方案而开发的营销型网站系统。在线留言模块、常见问题模块、友情链接模块。前台采用DIV+CSS,遵循SEO标准。 1.支持中文、英文两种版本,后台可以在不同的环境下编辑中英文。 3.程序和界面分离,提供通用的PHP标准语法字段供前台调用,可以为不同的页面设置不同的风格。 5.支持google地图生成、自定义标题、自定义关键词、自定义描
- '.$this->linecount.'条
- '.$this->currentpage.'/'.$this->pagecount.'页 ';
- 1 ';
- ... ';
- ... ';
- '.$i.' '." "
- '.$i.' '." ";
- ... ';
- ... ';
- '.$this->pagecount.' ';
if($this->currentpage-$halfper >1){
$re .= '
if($this->currentpage-$halfper*2 >1){
$re .= '
}else{
$re .= '
}
}
for ( $i = $this->currentpage - $halfper,$i > 1 || $i = 1 , $j = $this->currentpage + $halfper, $j pagecount || $j = $this->pagecount;$i {
$re .= $i == $this->currentpage
? '
: '
}
if($this->currentpage+$halfper pagecount){
if($this->currentpage+$halfper*2 pagecount){
$re .= '
}else{
$re .= '
}
$re .= '
}
$re .= '
return $re;
}










