SoFunction
Updated on 2025-04-04

Detailed explanation of PHP pagination (with examples)


<?php
// FileName:
// Pagination class, this class is only used to process data structures and is not responsible for processing display work
Class Pager
{
var $PageSize;                                                           �
var $CurrentPageID;          //The current number of pages
var $NextPageID;            //Next page
var $PreviousPageID;       //Previous page
var $numPages;
var $numItems;
var $isFirstPage;            //Is it the first page
var $isLastPage;             //Is it the last page
var $sql;

  function Pager($option)
   {
       global $db;
       $this->_setOptions($option);
// Total number of items
       if ( !isset($this->numItems) )
       {
           $res = $db->query($this->sql);
           $this->numItems = $res->numRows();
       }
// Total page count
       if ( $this->numItems > 0 )
       {
           if ( $this->numItems < $this->PageSize ){ $this->numPages = 1; }
           if ( $this->numItems % $this->PageSize )
           {
               $this->numPages= (int)($this->numItems / $this->PageSize) + 1;
           }
           else
           {
               $this->numPages = $this->numItems / $this->PageSize;
           }
       }
       else
       {
           $this->numPages = 0;
       }

       switch ( $this->CurrentPageID )
       {
           case $this->numPages == 1:
               $this->isFirstPage = true;
               $this->isLastPage = true;
               break;
           case 1:
               $this->isFirstPage = true;
               $this->isLastPage = false;
               break;
           case $this->numPages:
               $this->isFirstPage = false;
               $this->isLastPage = true;
               break;
           default:
               $this->isFirstPage = false;
               $this->isLastPage = false;
       }

       if ( $this->numPages > 1 )
       {
           if ( !$this->isLastPage ) { $this->NextPageID = $this->CurrentPageID + 1; }
           if ( !$this->isFirstPage ) { $this->PreviousPageID = $this->CurrentPageID - 1; }
       }

       return true;
   }

   /***
    *
* Return the database connection to the result set
* When the result set is relatively large, you can use this method to obtain the database connection and then traverse outside the class, which is less overhead
* If the result set is not large, you can directly use getPageData to get the results in the two-dimensional array format
* The getPageData method is also called to get the result.
    *
    ***/

   function getDataLink()
   {
       if ( $this->numItems )
       {
           global $db;

           $PageID = $this->CurrentPageID;

           $from = ($PageID - 1)*$this->PageSize;
           $count = $this->PageSize;
$link = $db->limitQuery($this->sql, $from, $count);   //Use the Pear DB::limitQuery method to ensure database compatibility

           return $link;
       }
       else
       {
           return false;
       }
   }

   /***
    *
* Return the result set in the format of a two-dimensional array
    *
    ***/

   function getPageData()
   {
       if ( $this->numItems )
       {
           if ( $res = $this->getDataLink() )
           {      
               if ( $res->numRows() )
               {
                   while ( $row = $res->fetchRow() )
                   {
                       $result[] = $row;
                   }
               }
               else
               {
                   $result = array();
               }

               return $result;
           }
           else
           {
               return false;
           }
       }
       else
       {
           return false;
       }
   }

   function _setOptions($option)
   {
       $allow_options = array(
                   'PageSize',
                   'CurrentPageID',
                   'sql',
                   'numItems'
       );

       foreach ( $option as $key => $value )
       {
           if ( in_array($key, $allow_options) && ($value != null) )
           {
               $this->$key = $value;
           }
       }

       return true;
   }
}
?>
<?php
// FileName: test_pager.php
// This is a simple sample code, the code used to establish a database connection using the pear db class is omitted.
require "";
if ( isset($_GET['page']) )
{
   $page = (int)$_GET['page'];
}
else
{
   $page = 1;
}
$sql = "select * from table order by id";
$pager_option = array(
       "sql" => $sql,
       "PageSize" => 10,
       "CurrentPageID" => $page
);
if ( isset($_GET['numItems']) )
{
   $pager_option['numItems'] = (int)$_GET['numItems'];
}
$pager = @new Pager($pager_option);
$data = $pager->getPageData();
if ( $pager->isFirstPage )
{
$turnover = "Home|Previous Page|";
}
else
{
$turnover = "<a href='?page=1&numItems=".$pager->numItems."'>Home</a>|<a href='?page=".$pager->PreviousPageID."&numItems=".$pager->numItems."'>Previous Page</a>|";
}
if ( $pager->isLastPage )
{
$turnover .= "Next Page|Last Page";
}
else
{
$turnover .= "<a href='?page=".$pager->NextPageID."&numItems=".$pager->numItems."'>Next Page</a>|<a href='?page=".$pager->numPages."&numItems=".$pager->numItems."'>Last Page</a>";
}
?>