ホームページ > バックエンド開発 > PHPチュートリアル > PHP codeigniter フレームワーク ページング class_PHP チュートリアル

PHP codeigniter フレームワーク ページング class_PHP チュートリアル

WBOY
リリース: 2016-07-20 11:09:24
オリジナル
1002 人が閲覧しました

codeigniter には非常に使いやすいページネーション クラスがあります。このチュートリアルでは、データベース チュートリアルから一連の結果を返し、それらの結果をページ分割する簡単な例を実行します。最新バージョンのciを使用します。ページング クラスは変更されていません (少なくとも私は変更していないと思います)。フレームワークの最新の安定したバージョンを使用することをお勧めします
メソッドを呼び出す

//ページングを作成する
$config = array();
$this- >load-> library('hpages');
$config['base_url'] = "channel/lists/c{$slug}/{page}";
$config['total_rows'] = intval($ total);
$config ['per_page'] = $pagesize;
$config['uri_segment'] = 1;
$config['num_links'] = 3;
$config['underline_uri_seg'] = 1;下線のページ番号 uri
$this->hpages->init($config); の場所
$this->template['lists'] = $list;
$this->template[ 'pagestr'] = $this- >hpages->create_links(1);

php チュートリアル ファイル コード

/**
* file_name: hpages.php
* Haohai Network フロントエンド ページング クラス
*
* @package haohailuo
* @author by laurence.xu
* @copyright copyright (c) 2010, haohailuo 、株式会社
* @Link http://www.haohailuo.com
* @SINCE VERSION 1.0 $ ID $
* @VERSION WED DEC 08 12:21:17 CST 2010
* @Filesource
*/
クラスHPページ{

= =右のリンクを使用してください。最後のページの終了

var $ cur_tag_open = '< b>'; //現在のページの開始...
var $ cur_tag_closevar $ next_open 「番号」リンク。 bar $ num_tag_close。
var $page_query_string = false; //末尾にページを追加する場合のデフォルト? {page} が含まれている場合、現在のページに置き換えられます。 line_uri_seg = -1; //下線がある場合、配列の添字位置ページ番号var $ custom_cur_page = 0 /pagination.php ')){
exlication_once(apppath.'config/pagination.php');// if(Isset($ this-> $ key)){
false、$ top_info = false){
//ページごとにレコードまたは0の数字がない場合、空のif($ this-> total_rows == 0 || $this-& gt; per_page == 0) {{
。ページごと);

//只有一页, 戻り空
if ($num_pages == 1 && !$show_info) {
return '';
}

$ci =& get_instance();

//获取当前页编号
if ($ci->config->item('enable_query_strings') === true || $this->page_query_string === true) {
if ($ci->input->get($this ->query_string_segment) != 0) {
$this->cur_page = $ci->input->get($this->query_string_segment);

// 現在のページを準備します - おかしなことはありません!
$this->cur_page = (int) $this->cur_page;
}
} else {
if (intval($this->custom_cur_page) > 0) {
$this->cur_page = (int) $this->custom_cur_page;
}else{
$uri_segment = $ci->uri->segment($this->uri_segment, 0);
if ( !empty($uri_segment) ) {
$this->cur_page = $uri_segment;
//如果有下划線
if ($this->underline_uri_seg >= 0) {
if (strpos($this ->cur_page, '-') !== false) {
$arr =explode('-', $this->cur_page);
}else {
$arr =explode('_', $this- >cur_page);
}
$this->cur_page = $arr[$this->underline_uri_seg];
                                                unset($arr);
}
// 現在のページを準備します - おかしなことはありません!
$this->cur_page = (int) $this->cur_page;
}
}
}
// echo $this ->cur_page;exit;
//左右显示的页码个数
$this->num_links = (int)$this->num_links;

if ($this-&g t;リンク数 show_error('リンク数は正の数である必要があります。');
}

if ( ! is_numeric($this->cur_page) || $this->cur_page < 1) {
{
$this-> ;cur_page = 1;
}

//如果当前页数大常页数,则赋值给当前页数最大值
if ($this->cur_page > $num_pages) {
$this->cur_page = $num_pages;

}

$uri_page_number = $this->cur_page;🎜

if ($ci->config->item('enable_query_strings') === true || $this->page_query_string === true) {
$this->base_url = rtrim($this-> ;base_url).'&'.$this->query_string_segment.'=';
} else {
$this->base_url = rtrim($this->base_url, '/') .'/';
}

if (strpos($this->base_url, "{page}") !== false) {
$this->page_mode = 'replace';
}

$output = $top_output = '' ;
//データ总量情報
if ($show_info) {
$output = " 共".$this->total_rows ."条记录 {$this->cur_page}/".$num_pages."页每页{$this ->per_page}条 ";
}
//データ情報,显示上面,提供要
if ($top_info) $top_output = " 共 ".$this- >total_rows ." 条记录 第{$this->cur_page}页/共".$num_pages."< /b>页 ";
}
//判断要显示首页
if ($this->cur_page > $this->num_links+1) {
$output .= $this->first_tag_open.' '.$this->first_link.''.$this->first_tag_close;
}

/ /显示上一页
if ($this->cur_page != 1) {
$j = $this->cur_page - 1;
if ($ j == 0) $j = '';
$output .= $this->prev_tag_open.''.$this->prev_link.''。 $this->prev_tag_close;
                }

//显示中页
for ($i=1; $i if ($i < $this->cur_page-$this->num_links || $i > $this->cur_page+$this->num_links) {
続き;
}

//显示中间页数
if($this->cur_page == $i){
$出力。 = $this->cur_tag_open.$i.$this->cur_tag_close; //当前页
}else {
$output .= $this->num_tag_open.'' .$i. '.$this->num_tag_close;
}
}

//显示下一页
if ($this->cur_page < $num_pages) {
$k = $this-> cur_page + 1;
$output .= $this->next_tag_open.''.$this->next_link.' '.$this->next_tag_close;
}

//显示尾页
if (($this-> cur_page + $this->num_links) < $num_pages) {
$output .= $this->last_tag_open.''.$this->last_link.''。 $this->last_tag_close;
}

$output = preg_replace("#([^:])//+#", "1/", $output);

// ラッパー HTML を追加存在します
$output = $this->full_tag_open.$output.$this->full_tag_close;

if($ top_info){

return array($ output、$ top_output); ) {
if($this->page_mode == 'default') {
return $this->_forsearch($this->base_url.$str);
} else {
$url = $this-> ;base_url;
if ($str == 1) {
$url = str_replace('/{page}', '', $this->base_url);
}
$url = str_replace("{page}" , $str, $url);

return $this->forsearch($url);
}
}

/**
*/
function _forsearch($string) {
$length = strlen( $string) - 1;
if($string{$length} == '/') {
$string = rtrim($string, '/');
}

return site_url($string);
$string を返します。

http://www.bkjia.com/PHPjc/444803.html

www.bkjia.com

tru​​e

http://www.bkjia.com/PHPjc/444803.html

技術記事

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート