ホームページ >php教程 >php手册 >PHP は古いシステムを解決し、すべてのデータ ページングのクラスを見つけます

PHP は古いシステムを解決し、すべてのデータ ページングのクラスを見つけます

WBOY
WBOYオリジナル
2016-06-13 11:58:20871ブラウズ

mysql 結果コレクションから指定されたフラグメントを抽出するためのいくつかのカスタム メソッドを追加しました。リリースが呼び出されない理由は、プログラムの元の検証に関連しています。
オンライン専門家の助けに感謝します。 。 。 。 古いシステムは人々を殺しており、背景には触れることができません

コードをコピーします コードは次のとおりです:


/* ページネーションクラス
* @author xiaojiong & 290747680@qq.com
* @date 2011-08-17
*
* show (2) 1 ... 62 63 64 65 66 67 68 ... 150
* ページネーションスタイル
* #page{font:12px/16px arial}
* #page span{float:left; margin:0px 3px;}
* #page a{float:left;margin:0 3px;border:1px Solid #ddd;padding:3px 7px; text-decoration:none;color:#666}
* #page a.now_page,#page a:hover{color:#fff;background:#05c}
*/
class Core_Lib_Page
{
public $first_row; //開始行番号< 🎜; >public $list_rows; //リストの各ページに表示される行数
protected $total_pages; //合計ページ数
protected $total_rows; //合計行数
protected $now_page; // 現在のページ数
protected $method = 'defalut'; // Ajax ページングの処理 HTML ページング (静的時) 通常の get メソッド
protected $parameter = ''; //ページングパラメータの名前
protected $ajax_func_name;
public $plus = 3; //ページングオフセット
protected $url
{
$lastResult; = array();
$skipCount = $this->get_skip_row_count();
if(mysql_num_rows($result)>0)
{
mysql_data_seek($result,$skipCount);
}
$pageSize = $this->$list_rows;
while($row = mysql_fetch_array($result))
{
$pageSize --; ] = $row;
if($pageSize == 0)
{
break ;
}
return $lastResult
}
パブリック関数 get_skip_row_count; ()
{
return $this->list_rows*($this->now_page-1)
}
/**
* コンストラクター
* @paramknown_type $data
*/
public function __construct( $data = array( ))
{
$this->total_rows = $data['total_rows']
$this->parameter = !empty($data['parameter']); ? $data[' パラメータ'] : '';
$this->list_rows = !empty($data['list_rows']) && $data['list_rows'] <= $data['リスト行数'] : 15 ;
$this->合計ページ数 = ceil($this->合計行数 / $this->リスト行数);
$this->ページ名 = !empty($data['ページ名']) $data['ページ名'] : 'p';
$this->ajax_func_name = !empty($data['ajax_func_name']) : '';
$this ->method = !empty($data['method']) ? $data['method'] : '';
/* 現在のページ*/
if(!empty( $data['now_page ']))
{
$this->now_page = intval($data['now_page'])
}else{
$this->now_page = !empty($_GET [$this->page_name]) ? intval($_GET[$this->page_name]):1;
$this->now_page = $this->; now_page <= 0 ? 1 : $this->now_pages;
if(!empty($this->total_pages) && $this->total_pages)
{
$this ->now_page = $this->total_pages;
}
$this->first_row = $this->list_rows * ($this->now_page - 1); 🎜>}
/**
* 現在の接続を取得します
* @param $page
* @param $text
* @return string
*/
protected function _get_link($page,$text)
{
switch ($this->method) {
case 'ajax ':
$parameter = '';
if($this->parameter)
{
$parameter = ','.$this->
}
return '< a onclick="' . $this->ajax_func_name . '('' . $page . ''.$parameter.')" href="javascript:void(0)">' $text . '< ;/a>' .
break
case '?', $page,$this-> ;
return ' '
default: >return '
' .
}
}
/**
* 現在のページのリンクを設定します
*/
保護された関数 _set_url()
{
$url = $_SERVER['REQUEST_URI'].(strpos($_SERVER[' REQUEST_URI'],' ?')?'':"?").$this->parameter;
$parse = parse_url($url)
if(isset($parse['query']) )) {
parse_str($parse['query'],$params);
unset($this->page_name]);
$url = $parse['path'] .'?'. http_build_query($params);
}
if(!empty($params))
{
$url .=
}
$ this->url = $url;
}
/**
* $page の URL を取得
* @param $page page
* @return string
*/
保護された関数 _get_url($page)
{
if($this->url = == NULL)
{
$this->set_url();
}
// $lable = strpos('&', $this->url) === FALSE ? '' : '& ';
return $this->page_name . $page;
/**
* 最初のページを取得します
* @return string
*/
public function first_page($ name = '最初のページ')
{
if($this->now_page > 5)
{
return $this->_get_link('1', $name);
}
return '';
/**
* 最後のページ
* @param $name
* @return string
*/
public function last_page($name = '最終一页')
{
if($this->now_page < $this->total_pages - 5)
{
return $this->_get_link($this->total_pages, $name);
}
return '';
}
/**
* 前のページ
* @return string
*/
public function up_page($name = '上一页')
{
if($this->now_page != 1)
{
return $this->_get_link($this->>now_page - 1, $name);
}
return '';
}
/**
* 次のページ
* @return string
*/
public function down_page($name = '下一页')
{
if($this->now_page < $this ->total_pages)
{
return $this->_get_link($this->now_page 1, $name);
}
return '';
}
/**
* ページネーションスタイルの出力
* @param $param
* @return string
*/
public function show($param = 1)
{
if($this->total_rows {
リターン '';
}
$className = 'show_' 。 $param;
$classNames = get_class_methods($this);
if(in_array($className, $classNames))
{
return $this->$className();
}
return '';
}
保護関数 show_2()
{
if($this->total_pages != 1)
{
$return = '';
$return .= $this->up_page('<');
for($i = 1;$i<=$this->total_pages;$i )
{
if($i == $this->now_page)
{
$return .= "
$in";
}
else
{
if($this->gt;now_page-$i>=4 && $i != 1)
{
$return .="<スパンクラス='pageMore'>...n";
$i = $this->now_page-3;
}
else
{
if($i >= $this->now_page 5 && $i != $this->total_pages)
{
$return .="...n";
$i = $this->total_pages;
}
$return .= $this->_get_link($i, $i) 。 「ん」;
}
}
}
$return .= $this->down​​_page('>');
return $return;
}
}
保護関数 show_1()
{
$plus = $this->plus;
if( $plus $this->now_page > $this->total_pages)
{
$begin = $this->total_pages - $plus * 2;
}else{
$begin = $this->now_page - $plus;
}
$begin = ($begin >= 1) ? $begin : 1;
$return = '';
$return .= $this->first_page();
$return .= $this->up_page();
for ($i = $begin; $i {
if($i>$this->total_pages)
{
休憩;
}
if($i == $this->now_page)
{
$return .= "$in" ;
}
else
{
$return .= $this->_get_link($i, $i) . 「ん」;
}
}
$return .= $this->down_page();
$return .= $this->last_page();
return $return;
}
保護関数 show_3()
{
$plus = $this->plus;
if( $plus $this->now_page > $this->total_pages)
{
$begin = $this->total_pages - $plus * 2;
}else{
$begin = $this->now_page - $plus;
}
$begin = ($begin >= 1) ? $begin : 1;
$return = '总计' .$this->total_rows。 ' 个记录分範囲 ' .$this->total_pages. 「 页 、当前第 」 。 $this->now_page 。 「页」;
$return .= ',每页 ';
$return .= ' ';
$return .= $this->first_page()."n";
$return .= $this->up_page()."n";
$return .= $this->down_page()."n";
$return .= $this->last_page()."n";
$return .= '';
return $return;
}
}
?>

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。