本文汇集了几个比较好用的php分页类,都是经过广大网友考验的代码了,小伙伴们可以直接拿来使用
分页类一
复制代码 代码如下:
/**
分页类
修改:Silence
Creatdate:2006-5-30
LastModify:2009-5-31
使用方法
$page = new page ( $result, 20 ); //$result为返回记录集数组 ,20为返回每页条数
$index = $page->GetIndexBar () . $page->GetPageInfo ();
print_r ( $result );
echo \"
\";
echo \"
*/
class Page {
private $mTotalRowsNum = 0; // 总信息行数
private $mCurPageNumber = 1; // 当前所在页
private $mTotalPagesNum = 1; // 总页数
private $mQueryString; // 页面传递的数据(url?后的字符串)
private $mPageRowsNum = 20; // 每页显示行数
private $mIndexBarLength = 11; // 索引条的页数
private $mIndexBar = ''; // 页码索引条
private $mPageInfo = ''; // 分页信息
// 页码索引条样式
private $mNextButton = \"8\";
private $mPreButton = \"7\";
private $mFirstButton = \"9\";
private $mLastButton = \":\";
private $mCssIndexBarCurPage = \"font-weight:bold;color:#FF0000\";
private $mCssIndexBarPage = '';
// 分页信息样式
private $mCssPageInfoNumFont = 'color:#FF0000';
private $mCssPageInfoFont = '';
// 构造方法
public function __construct(&$rSqlQuery, $userPageRowsNum = '') {
if (! is_array ( $rSqlQuery )) {
$this->SetDbPageBreak ( $rSqlQuery, $userPageRowsNum );
} else {
$this->SetArrayPageBreak ( $rSqlQuery, $userPageRowsNum );
}
}
// 设置数据库型分页
private function SetDbPageBreak(&$rSqlQuery, $userPageRowsNum = '') {
$this->SetDbTotalRowsNum ( $rSqlQuery );
$this->SetTotalPagesNum ( $userPageRowsNum );
if ($this->mTotalPagesNum > 1) {
$this->SetCurPageNumber ();
$this->SetSqlQuery ( $rSqlQuery );
$this->SetQueryString ();
$this->SetIndexBar ();
$this->SetPageInfo ();
}
}
// 设置数组型分页
private function SetArrayPageBreak(&$rArray, $userPageRowsNum = '', $userTotalRowsNum = '') {
$this->SetArrayTotalRowsNum ( $rArray, $userTotalRowsNum );
$this->SetTotalPagesNum ( $userPageRowsNum );
if ($this->mTotalPagesNum > 1) {
$this->SetCurPageNumber ();
$this->SetArray ( $rArray );
$this->SetQueryString ();
$this->SetIndexBar ();
$this->SetPageInfo ();
}
}
// 数据库型计算总行数
private function SetDbTotalRowsNum($rSqlQuery) {
$this->mTotalRowsNum = mysql_num_rows ( mysql_query ( $rSqlQuery ) );
}
// 数组型计算总行数
private function SetArrayTotalRowsNum($array) {
$this->mTotalRowsNum = count ( $array );
}
// 计算总页数
private function SetTotalPagesNum($userPageRowsNum = '') {
if ($userPageRowsNum) {
$this->mPageRowsNum = $userPageRowsNum;
}
$this->mTotalPagesNum = ( int ) (floor ( ($this->mTotalRowsNum - 1) / $this->mPageRowsNum ) + 1);
}
// 计算当前页数
private function SetCurPageNumber() {
if ($_GET ['page']) {
$this->mCurPageNumber = $_GET ['page'];
}
}
// 修正Sql截取语句
private function SetSqlQuery(&$rSqlQuery) {
$start_number = ($this->mCurPageNumber - 1) * $this->mPageRowsNum;
$rSqlQuery .= \" LIMIT \" . $start_number . \",\" . $this->mPageRowsNum;
}
// 修正截取后的Array
private function SetArray(&$rArray) {
$start_number = ($this->mCurPageNumber - 1) * $this->mPageRowsNum;
$rArray = array_slice ( $rArray, $start_number, $this->mPageRowsNum );
}
// 修正 $_GET 传递数据
private function SetQueryString() {
$query_string = $_SERVER ['QUERY_STRING'];
if ($query_string == '') {
$this->mQueryString = \"?page=\";
} else {
$this->mQueryString = preg_replace ( \"/&?page=\d+/\", '', $query_string );
$this->mQueryString = \"?\" . $this->mQueryString . \"&page=\";
}
}
// 设置页码索引条
private function GetPageIndex() {
if ($this->mTotalPagesNum mIndexBarLength) {
$first_number = 1;
$last_number = $this->mTotalPagesNum;
} else {
$offset = ( int ) floor ( $this->mIndexBarLength / 2 );
if (($this->mCurPageNumber - $offset) $first_number = 1;
} elseif (($this->mCurPageNumber + $offset) > $this->mTotalPagesNum) {
$first_number = $this->mTotalPagesNum - $this->mIndexBarLength + 1;
} else {
$first_number = $this->mCurPageNumber - $offset;
}
$last_number = $first_number + $this->mIndexBarLength - 1;
}
$last_number;
for($i = $first_number; $i if ($this->mCurPageNumber == $i) {
$page_index .= \"\" . $i . \" \";
} else {
$page_index .= \" \" . $i . \" \";
}
}
return $page_index;
}
// 设置页码索引条
private function SetIndexBar() {
$this->mIndexBar = $this->GetNavFirstButton ();
$this->mIndexBar .= $this->GetNavPreButton ();
$this->mIndexBar .= $this->GetPageIndex ();
$this->mIndexBar .= $this->GetNavNextButton ();
$this->mIndexBar .= $this->GetNavLastButton ();
}
// 得到页码索引条 首页按钮
private function GetNavFirstButton() {
return \"\" . $this->mFirstButton . \" \";
}
// 得到页码索引条 上一页按钮
private function GetNavPreButton() {
if ($this->mCurPageNumber > 1) {
$pre_number = $this->mCurPageNumber - 1;
} else {
$pre_number = 1;
}
return \"\" . $this->mPreButton . \" \";
}
// 得到页码索引条 下一页按钮
private function GetNavNextButton() {
if ($this->mCurPageNumber mTotalPagesNum) {
$next_number = $this->mCurPageNumber + 1;
} else {
$next_number = $this->mTotalPagesNum;
}
return \"\" . $this->mNextButton . \" \";
}
// 得到页码索引条 末页按钮
private function GetNavLastButton() {
return \"\" . $this->mLastButton . \" \";
}
// 设置分页信息
private function SetPageInfo() {
$this->mPageInfo = \"\";
$this->mPageInfo .= \"共 \" . $this->mTotalRowsNum . \" 条信息 | \";
$this->mPageInfo .= \"\" . $this->mPageRowsNum . \" 条/页 | \";
$this->mPageInfo .= \"共 \" . $this->mTotalPagesNum . \" 页 | \";
$this->mPageInfo .= \"第 \" . $this->mCurPageNumber . \" 页\";
$this->mPageInfo .= \"\";
}
// 取出页码索引条
public function GetIndexBar() {
return $this->mIndexBar;
}
// 取出分页信息
public function GetPageInfo() {
return $this->mPageInfo;
}
//释放类
function __destruct() {
}
}
?>
分页类二
复制代码 代码如下:
성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.

핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

AI Hentai Generator
AI Hentai를 무료로 생성하십시오.

인기 기사
R.E.P.O. 에너지 결정과 그들이하는 일 (노란색 크리스탈)
4 몇 주 전By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. 최고의 그래픽 설정
4 몇 주 전By尊渡假赌尊渡假赌尊渡假赌
어 ass 신 크리드 그림자 : 조개 수수께끼 솔루션
2 몇 주 전ByDDD
R.E.P.O. 아무도들을 수없는 경우 오디오를 수정하는 방법
4 몇 주 전By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. 채팅 명령 및 사용 방법
4 몇 주 전By尊渡假赌尊渡假赌尊渡假赌

뜨거운 도구

Dreamweaver Mac版
시각적 웹 개발 도구

에디트플러스 중국어 크랙 버전
작은 크기, 구문 강조, 코드 프롬프트 기능을 지원하지 않음

Atom Editor Mac 버전 다운로드
가장 인기 있는 오픈 소스 편집기

VSCode Windows 64비트 다운로드
Microsoft에서 출시한 강력한 무료 IDE 편집기

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)
