求把版主这个分页类改成支持php4的
之前都是用版主的这个类来进行分页~~~但是最近有个服务器是php4版本~~查了一下资料~php4不支持public不支持static等一大堆~~~所以求高手指教~把下面这个分页类改成支持php4
ps:constant("page_size")是config文件中定义好的常量
<?php
class paging {
public static $count = 0;
public static $size = 0;
public static $page = 0;
static function prepare($sql, $pagesize='')
{$pagesize=constant("page_size");
$page = isset($_GET['page']) ? $_GET['page'] : 1;
$pageon = ($page - 1) * $pagesize;
$sql = preg_replace('/select\s/i', '$0SQL_CALC_FOUND_ROWS ', $sql) . " limit $pageon, $pagesize";
$rs = mysql_query($sql);
$p = mysql_query('SELECT FOUND_ROWS()');
list(self::$count)= mysql_fetch_row($p);
self::$size= $pagesize=10;
self::$page = $page;
return $rs;
}
static function bar($tpl='') {
if(!$tpl) $tpl = '<a href=?reset>首页</a> <a href=?prve>上一页</a> <a href=?next>下一页</a> <a href=?end>尾页</a>';
$count = ceil(self::$count / constant("page_size"));
$page = self::$page;
unset($_GET['page']);
$d = array(
'reset' => 1,
'prve' => $page > 1 ? $page - 1 : 1,
'next' => $page < $count ? $page + 1 : $count,
'end' => $count,
);
foreach($d as $k=>$v) {
$_GET['page'] = $v;
$tpl = str_replace($k, http_build_query($_GET), $tpl);
}
return $tpl."当前第".$page."页|共".$count."页";
}
}
/*
把
$sql =".....";
$rs = mysql_query($sql);
或
$rs = mysql_query("select ....");
之类的
改作
include 'paging.php';
$rs = paging::prepare($sql, 每页行数);
在需要出现分页条的地方写入
paging::bar();
就可以了
*/
?>
class paging {
//增加一个方法,用于在静态调用的方法间传递数据
function para($na) {
static $ar;
if(func_num_args() == 1) return $ar[$na];
$ar[$na] = func_get_arg(1);
}
function prepare($sql, $pagesize='') {
$pagesize=constant("page_size");
$page = isset($_GET['page']) ? $_GET['page'] : 1;
$pageon = ($page - 1) * $pagesize;
$sql = preg_replace('/select\s/i', '$0SQL_CALC_FOUND_ROWS ', $sql) . " limit $pageon, $pagesize";
$rs = mysql_query($sql);
$p = mysql_query('SELECT FOUND_ROWS()');
list($count)= mysql_fetch_row($p);
paging::para('count', $count);
paging::para('size', $pagesize);
paging::para('page', $page);
return $rs;
}
function bar($tpl='') {
if(!$tpl) $tpl = '<a href=?reset>首页</a> <a href=?prve>上一页</a> <a href=?next>下一页</a> <a href=?end>尾页</a>';
$count = ceil(paging::para('count') / constant("page_size"));
$page = paging::para('page');
unset($_GET['page']);
$d = array(
'reset' => 1,
'prve' => $page > 1 ? $page - 1 : 1,
'next' => $page < $count ? $page + 1 : $count,
'end' => $count,
);
foreach($d as $k=>$v) {
$_GET['page'] = $v;
$tpl = str_replace($k, http_build_query($_GET), $tpl);
}
return $tpl."当前第".$page."页
[解决办法]
共".$count."页";
}
}
//php4 没有 http_build_query 函数,所以要自己定义一个
if(! function_exists('http_build_query')):
function http_build_query($formdata, $numeric_prefix='', $mode=0) {
static $ar = array();
foreach($formdata as $k=>$v) {
if(is_array($v)) {
if($mode++) http_build_query($v, $numeric_prefix.'['.$k.']');
else http_build_query($v, $k);
}else {
if($mode)
$ar[] = $numeric_prefix.'['.$k.']='.urlencode($v);
else
$ar[] = (is_numeric($k) ? $numeric_prefix.$k : $k).'='.urlencode($v);
}
}
if(--$mode < 0) {
$r = join('&',$ar);
$ar = array();
return $r;
}
return '';
}
endif;