PHP 는 대상 을 대상 으로 봉 인 된 페이지 클래스 예 시 를 기반 으로 합 니 다
4104 단어 PHP대상 을 향 하 다페 이 징 클래스
<?php
class Page
{
protected $num;//
protected $total;//
protected $pageCount;//
protected $current;//
protected $offset;//
protected $limit;//
/**
*
* @param int $total
* @param int $num
*/
public function __construct($total,$num=5)
{
//1.
$this->num = $num;
//2.
$this->total = $total;
//3.
$this->pageCount = ceil($total/$num);
//4.
$this->offset = ($this->current-1)*$num;
//5.
$this->limit = "{$this->offset},{$this->num}";
//6.
$this->current();
}
/**
*
*/
public function current(){
$this->current = isset($_GET['page'])?$_GET['page']:'1';
//
if ($this->current>$this->pageCount){
$this->current = $this->pageCount;
}
//
if ($this->current<1){
$this->current = 1;
}
}
/**
*
* @param string $key
* @return float|int|string
*/
public function __get($key){
if ($key == "limit") {
return $this->limit;
}
if ($key == "offset") {
return $this->offset;
}
if ($key == "current") {
return $this->current;
}
}
/**
*
* @return string
*/
public function show(){
//
$_GET['page'] = isset($_GET['page'])?$_GET['page']:'1';
// $_GET
$first = $end = $prev = $next = $_GET;
// var_dump($prev);
//
//
if ($this->current-1<1){
$prev['page'] = 1;
}else{
$prev['page'] = $this->current-1;
}
//
//
if ($this->current+1>$this->pageCount) {
$next["page"] = $this->pageCount;
}else{
$next['page'] = $this->current+1;
}
/*
$first['page'] = 1;
//
$end['page'] = $this->pageCount;
*/
//
$url = "http://".$_SERVER["SERVER_NAME"].$_SERVER["SCRIPT_NAME"];
// url ?
//http://xxx/xxx/Page.class.php?page=
$prev = http_build_query($prev);
$next = http_build_query($next);
// $first = http_build_query($first);
// $end = http_build_query($end);
//
$prevpath = $url."?".$prev;
$nextpath = $url."?".$next;
// $firstpath = $url."?".$first;
// $endpath = $url."?".$end;
$str = " {$this->total} {$this->pageCount} ";
$str .= "<a href='{$url}?page=1'> </a> ";
$str .= "<a href='{$prevpath}'> </a> ";
$str .= "<a href='{$nextpath}'> </a> ";
$str .= "<a href='{$url}?page={$this->pageCount}'> </a> ";
return $str;
}
}
//
$a = new Page(10);
echo $a->show();
?>
더 많은 PHP 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있다.본 논문 에서 말 한 것 이 여러분 의 PHP 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
laravel에 yo에서 angularJs&coffeescript를 사용할 수 있도록 한다.먼저 yo 명령을 사용할 수 있어야하므로 아래에서 설치 global에 설치한 곳에서 laravel의 프로젝트 루트로 이동. 클라이언트 코드를 관리하는 디렉토리를 만들고 이동합니다. 클라이언트 환경 만들기 이것으로 히...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.