2

我已经有一个程序员在我的一个网站中实现了一个类分页。现在我想将它实现到另一个。不同之处在于他使用限制和偏移并从数据库中获取数据,现在有一个 foreach 循环,我是 php 的初学者。于是就有了代码:

$page = !empty($_GET['page']) ? (int)$_GET['page'] : 1;
$per_page = 10;
$total_count = 25; \\ should be dynamic here

$pagination = new Pagination($page, $per_page, $total_count);

foreach(...

)

分页类包含确定是否存在上一页、下一页等的方法,并且这些方法工作正常。只是我在所有 3 页中只获得前 10 个。提前致谢!

分页类看起来像这样

<?php

// This is a helper class to make paginating 
// records easy.
class Pagination {

  public $current_page;
  public $per_page;
  public $total_count;

  public function __construct($page=1, $per_page=10, $total_count=0){
    $this->current_page = (int)$page;
    $this->per_page = (int)$per_page;
    $this->total_count = (int)$total_count;
  }

  public function offset() {
    // Assuming 20 items per page:
    // page 1 has an offset of 0    (1-1) * 20
    // page 2 has an offset of 20   (2-1) * 20
    //   in other words, page 2 starts with item 21
    return ($this->current_page - 1) * $this->per_page;
  }

  public function total_pages() {
    return ceil($this->total_count/$this->per_page);
    }

  public function previous_page() {
    return $this->current_page - 1;
  }

  public function next_page() {
    return $this->current_page + 1;
  }

    public function has_previous_page() {
        return $this->previous_page() >= 1 ? true : false;
    }

    public function has_next_page() {
        return $this->next_page() <= $this->total_pages() ? true : false;
    }


}

?>
4

0 回答 0