-
-
class PageLink {
- /* 페이징 표시 매개변수 설정*/
- private $db_table = "";
- private $db_table_field = ""; //표시할 데이터베이스의 필드
- private $condition = ""; //쿼리 조건
- private $sort = "" //정렬 조건
- private $page_size = 0; //각 페이지에 표시되는 레코드 수
- private $link_num = 0; //표시되는 페이지 번호 링크 수
- private $page = 1 //현재 페이지 번호
- private $records = 0 ; // 테이블의 총 레코드 수
- private $page_count = 0; //총 페이지 수
- private $pagestring = "" //
- private $linkUrl = ""; //현재 페이지 경로
- private $urlPara = ""; //현재 페이지 url 매개변수
- private $linkUrlNum = 1;
- /*
- * 사용자 정의 페이징
- */
- private $linkFormat = " ";
/* 가져온 데이터*/
- private $page_data = "";//데이터베이스에서 가져온 데이터,
//$page_data를 2차원 배열로 받았습니다
private $dbHelper;
- /* 변수 정의 부분 end */
/* 함수 정의(클래스 메소드) 시작 */
function __construct() {include_once 'DBHelper/DBHelper.php';//데이터베이스입니다 연산 클래스
- $this- >dbHelper = new DBHelper();
- }
/*
- * 페이징 정보 설정 시작
- * @param $ db_table 테이블
- * @param $db_table_field 필드
- * @param $condition 조건
- * @param $sort 정렬
- * @param $page_size 표시 번호
- * @param $link_num 숫자 개수 links
- * @param $url 페이지 경로
- * @param $para url 매개변수
- */
- 공용 함수 집합($db_table, $db_table_field, $condition, $sort, $page_size, $link_num , $url, $para) {
- $this->db_table = $db_table;//테이블 이름
- $this->db_table_field = $db_table_field; //필드 배열,
- $this-> ;condition = $condition; //정렬 조건
- $this->sort = $sort; //정렬 조건
- //표시할 필드 이름
- //배열에 쓰기
- / * db 파라미터 설정 종료 */< ;/p>
/* 페이징 파라미터 설정 시작 */
- $this->page_size = $page_size;//각 페이지에 표시되는 레코드 수
- $this->link_num = $link_num;//페이지 넘김 링크 수 표시
- $this->linkUrl = $url;
- $this->urlPara = $para;
- /* 페이징 매개변수 설정 end */
- }
/* 페이징 정보 설정 end */>
/* 페이징 링크 가져오기 데이터 시작 */
public function get() {
- $page_data[0] = $this->pagestring;
- $page_data[1] = $this- >page_data;
- return $page_data;
- }
/* 페이지 매기기 링크 데이터 가져오기 end */
/* 페이지 번호 처리 시작 */
private function set_page() {
- if (isset($_REQUEST["page"])) {
- $this->page = intval($_REQUEST["page"]);
- } else {
- $this->page = 1;
- }
- }
/* 페이지 번호 처리 끝 */
/* DB의 레코드 수 가져오기 시작 */
private function get_records() {
- $this->records = $this-> ;dbHelper->counts($this->db_table, $this->condition);
- }
- < p>/* dbend의 레코드 수 가져오기 */
/* 페이지 링크 문자열 만들기 시작 */
개인 함수 page_link( ) {
- $checkPage = intval($this ->page / $this->link_num);
- $startPage = 1;
- $stopPage = 1;
- if($checkPage == 0 && $this->페이지 < $this ->link_num){
- $startPage = 1;
- }
- $linkPage = ($this->link_num / 2);
- if($this->page > $linkPage ){
- $startPage = $this->page - $linkPage;
- }
- if(($startPage $this->link_num)> ;$this->page_count){
- $startPage = $this->page_count - $this->link_num 1;
- }
- if($startPage<1){
- $startPage = 1;
- }
- $stopPage = $startPage ($this->link_num - 1);
- if($stopPage> $this->page_count){
- $stopPage = $this ->page_count;
- }
- $countStr = "共".$this->records."條記錄";
- $currStr = "".$this->page."/" .$this->page_count."頁 ";
- $beginLink = "首頁";
- $preLink = "上一頁";
- $nextLink = "下一頁";
- $noPreLink = "上一頁 ";
- $noNextLink = "下一頁";
- $endLink = "尾頁";
- if($this->page > ($linkPage 1) && $this- >page_count > $this->link_num){
- $currPage .= "1";
- }
- for($i=$startPage;$i<=$stopPage;$i ){
- if($i == $this-> ;페이지){
- $currPage .= "".$i."";
- }
- else{
- $currPage . = "".$i."";
- }
- }
- if(($this->page_count - $this->page) > $linkPage && $this->page_count > $this->link_num){
- $currPage .= "...".$this->page_count."";
- }
- $jumpPage .= "< ;입력 유형='텍스트' id='page_text_".$this->linkUrlNum.
- "' onmouseover='select();' size='1' maxlength='4' onkeyup="this.value=this.value.replace(/\D /g,'');" /> ";
- $jumpPage .= "< ;입력 유형='버튼' onclick="window.location.href='".$this->linkUrl
- ."?page=' document.getElementById('page_text_".$this->linkUrlNum." ').value '".$this->urlPara
- ."'" name='page_submit' value='GO' />";
- $this->linkUrlNum ;
- if( !empty($this->linkFormat)){
- $tempLinkFormat = $this->linkFormat;
- $tempLinkFormat = str_replace("總記錄", $countStr, $tempLinkFormat);
- $tempLinkFormat = str_replace("頁次", $currStr, $tempLinkFormat);
- if($this->page_count > 1){
- $tempLinkFormat = str_replace("首頁", $beginLink, $tempLinkFormat);
- if($this->page > 1){
- $tempLinkFormat = str_replace("上一頁", $preLink, $tempLinkFormat);
- }
- else{
- $ tempLinkFormat = str_replace("上一頁", $noPreLink, $tempLinkFormat);
- }
- if($this->page < $this->page_count){
- $tempLinkFormat = str_replace( "下一頁", $nextLink, $tempLinkFormat);
- }
- else{
- $tempLinkFormat = str_replace("下一頁", $noNextLink, $tempLinkFormat);
- }
- $tempLinkFormat = str_replace("尾頁", $endLink, $tempLinkFormat);
- $tempLinkFormat = str_replace("分頁", $currPage, $tempLinkFormat);
- $tempLinkFormat = str_replace("跳轉", $jumpPage , $tempLinkFormat);
- }
- else{
- $tempLinkFormat = str_replace("首頁", "", $tempLinkFormat);
- $tempLinkFormat = str_replace("上一頁", "", $tempLinkFormat);
- $tempLinkFormat = str_replace("下一頁", "", $tempLinkFormat);
- $tempLinkFormat = str_replace("尾頁", "", $tempLinkFormat);
- $tempLinkFormat = str_replace("分頁", "", $tempLinkFormat);
- $tempLinkFormat = str_replace("跳轉", "", $tempLinkFormat);
- }
}
- $this->pagestring.=$countStr." ".$currStr;
- if($this->page_count > 1){
- $this->pagestring.=$beginLink;
- if($this->page > 1){
- $this->pagestring.=$preLink;
- }
- $this->pagestring.=$currPage;
- if($this->page < $this->page_count){
- $this->pagestring.=$nextLink;
- }
- $this->pagestring.=$endLink.$jumpPage;
- }
- }
/* 페이지 넘김 링크 문자열 만들기 end */
/* 데이터 가져오기 시작 */
-
비공개 함수 fetch_data() {
- if ($this->records) {
- $limit = ($this->page - 1) * $this->page_size ",$ this->page_size";
- $this->page_data = $this->dbHelper->fetch($this->db_table, $this->condition, $this->sort, $ 제한);
- }
- }
/* 데이터 가져오기 끝 */
/* 페이징 만들기 시작 */< ;/p>
공용 함수 create_page() {
- $this->set_page();
- $this->get_records();
- $this->page_count = ceil($this->records / $this->page_size);
- $this->page_link();
- $this->fetch_data();
- }
/* 페이지 매김 생성 end */
function __destruct() {
}
/* 함수 정의(클래스 메소드) end */
- }
- /*
- 호출 메소드
- include_once 'PageLink.php';
- $pageLink = new PageLink (); //인스턴스화된 객체
- $pageLink->set("table", "*(또는 필드)", "조건", "정렬", "데이터 항목 수", "페이지당 링크 수 " , "페이지(list.php)", "?page=1 (&id=1&name=test)"를 제외한 기타 매개변수");//수신 매개변수
- $pageLink->create_page();//페이징 생성
- $list = $pageLink->get();//데이터 가져오기
- echo $list[0];//페이징 링크
- print_r($list[1]) //데이터 인쇄, 또는 필요에 따라 반복
- */
-
코드 복사
|