Home  >  Article  >  php教程  >  一个高ai的分页函数和一个url函数

一个高ai的分页函数和一个url函数

WBOY
WBOYOriginal
2016-06-13 12:40:07914browse

这个分页函数非常高只能的
看看就知道了
function ppage($total, $page, $e_page = 15, $e_block = 10, $url = '', $color = '') {
if(!strpos($url,'?'))
   $url.='?';
else
   $url.='&';
if($color'') {
   $color   ='';
   $colore  = '
';
}
$totalpage = ceil($total/$e_page);  //页面数目
$p_block   = ceil($totalpage/$e_block);  //块数目
$n_block   = ceil($page/$e_block); //现在块
$start     = ($n_block-1)*$e_block+1;
$ended     = $n_block*$e_block;
if($ended>$total)
   $ended   = $totalpage;
if($n_block>1) {
   $link    = $start-1;
   $head    =''.$color.'[ ';
}
if($n_block   $link    = $ended+1;
   $foot    = '
'.$color.'[=>]'.$colore.'';
}
for($i=$start;$i   $middle .=''.$color.'['.$i.']'.$colore.' ';
}
return $head.$middle.$foot;
}
下面是取得当前url的方法
function geturl() {
$headers = getallheaders();
$url     = 'http://'.$headers['Host'].$SCRIPT_NAME;
return $url;

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:php&java(二)Next article:图书管理程序(三)