search
HomeBackend DevelopmentPHP TutorialPHP paging class code, customizable parameters PHP paging code

  1. class PageLink {

  2. /* Paging display parameter settings*/
  3. private $db_table = "";
  4. private $db_table_field = "";//Fields in the database to be displayed
  5. private $ condition = ""; //Query conditions
  6. private $sort = ""; //Sort conditions
  7. private $page_size = 0; //Number of records displayed on each page
  8. private $link_num = 0; //Display the number of page number links
  9. private $page = 1; //Current page number
  10. private $records = 0; //Total number of records in the table
  11. private $page_count = 0; //Total number of pages
  12. private $pagestring = ""; //Paging link characters before and after String
  13. private $linkUrl = ""; //Current page path
  14. private $urlPara = ""; //Current page url parameter
  15. private $linkUrlNum = 1;
  16. /*
  17. * Custom paging
  18. */
  19. private $linkFormat = "";
  20. /* Obtained data*/

  21. private $page_data = "";//Data obtained from the database,
  22. // $page_data is a two-dimensional array received

  23. private $dbHelper;

  24. /* Variable definition part end */
  25. /* Function definition (class method) begin * /

  26. function __construct() {include_once 'DBHelper/DBHelper.php';//This is the database operation class

  27. $this->dbHelper = new DBHelper();
  28. } p>
  29. /*

  30. * Set paging information begin
  31. * @param $db_table table
  32. * @param $db_table_field field
  33. * @param $condition condition
  34. * @param $sort sort
  35. * @param $page_size display Number of items
  36. * @param $link_num number of numeric links
  37. * @param $url page path
  38. * @param $para url parameter
  39. */
  40. public function set($db_table, $db_table_field, $condition, $sort, $page_size, $link_num, $url, $para) {
  41. $this->db_table = $db_table;//Table name
  42. $this->db_table_field = $db_table_field; //Field array,
  43. $this->condition = $ condition; //Sort condition
  44. $this->sort = $sort; //Sort condition
  45. //The field name to be displayed
  46. //Write into the array
  47. /* db parameter setting end */
  48. /* Paging parameter setting begin */

  49. $this->page_size = $page_size;//The number of records displayed on each page
  50. $this->link_num = $link_num;//Display page turning links Number
  51. $this->linkUrl = $url;
  52. $this->urlPara = $para;
  53. /* Setting paging parameters end */
  54. }
  55. /* Setting paging informationend */

  56. /* Get paging link data begin */

  57. public function get() {

  58. $page_data[0] = $this->pagestring ;
  59. $page_data[1] = $this->page_data;
  60. return $page_data;
  61. }
  62. /* Get pagination link data end */

  63. private function set_page() {

  64. if (isset($_REQUEST["page"])) {
  65. $this->page = intval($ _REQUEST["page"]);
  66. } else {
  67. $this->page = 1;
  68. }
  69. }
  70. /* Page number processing end */

  71. < ;p>/* Get the number of records in db begin */
  72. private function get_records() {

  73. $this->records = $this->dbHelper->counts($ this->db_table, $this->condition);
  74. }
  75. /* Get the number of records in db end */

  76. /* Create Page turning link string begin */

  77. private function page_link() {

  78. $checkPage = intval($this->page / $this->link_num);
  79. $startPage = 1 ;
  80. $stopPage = 1;
  81. if($checkPage == 0 && $this->page link_num){
  82. $startPage = 1;
  83. }
  84. $linkPage = ($this-> link_num / 2);
  85. if($this->page > $linkPage){
  86. $startPage = $this->page - $linkPage;
  87. }
  88. if(($startPage+$this->link_num)> ;$this->page_count){
  89. $startPage = $this->page_count - $this->link_num + 1;
  90. }
  91. if($startPage$startPage = 1;
  92. }
  93. $ stopPage = $startPage+($this->link_num - 1);
  94. if($stopPage> $this->page_count){
  95. $stopPage = $this->page_count;
  96. }
  97. $countStr = "共".$this->records."條記錄";
  98. $currStr = "".$this->page."/".$this->page_count."頁 ";
  99. $beginLink = "首頁";
  100. $preLink = "上一頁";
  101. $nextLink = "下一頁";
  102. $noPreLink = "上一頁";
  103. $noNextLink = "下一頁";
  104. $endLink = "尾頁";
  105. if($this->page > ($linkPage + 1) && $this->page_count > $this->link_num){
  106. $currPage .= "1";
  107. }
  108. for($i=$startPage;$iif($i == $this->page){
  109. $currPage .= "".$i."";
  110. }
  111. else{
  112. $currPage .= "".$i."";
  113. }
  114. }
  115. if(($this->page_count - $this->page) > $linkPage && $this->page_count > $this->link_num){
  116. $currPage .= "...".$this->page_count."";
  117. }
  118. $jumpPage .= " ";
  119. $jumpPage .= "linkUrl
  120. ."?page='+document.getElementById('page_text_".$this->linkUrlNum."').value+'".$this->urlPara
  121. ."'" name='page_submit' value='GO' />";
  122. $this->linkUrlNum++;
  123. if(!empty($this->linkFormat)){
  124. $tempLinkFormat = $this->linkFormat;
  125. $tempLinkFormat = str_replace("總記錄", $countStr, $tempLinkFormat);
  126. $tempLinkFormat = str_replace("頁次", $currStr, $tempLinkFormat);
  127. if($this->page_count > 1){
  128. $tempLinkFormat = str_replace("首頁", $beginLink, $tempLinkFormat);
  129. if($this->page > 1){
  130. $tempLinkFormat = str_replace("上一頁", $preLink, $tempLinkFormat);
  131. }
  132. else{
  133. $tempLinkFormat = str_replace("上一頁", $noPreLink, $tempLinkFormat);
  134. }
  135. if($this->page page_count){
  136. $tempLinkFormat = str_replace("下一頁", $nextLink, $tempLinkFormat);
  137. }
  138. else{
  139. $tempLinkFormat = str_replace("下一頁", $noNextLink, $tempLinkFormat);
  140. }
  141. $tempLinkFormat = str_replace("尾頁", $endLink, $tempLinkFormat);
  142. $tempLinkFormat = str_replace("分頁", $currPage, $tempLinkFormat);
  143. $tempLinkFormat = str_replace("跳轉", $jumpPage, $tempLinkFormat);
  144. }
  145. else{
  146. $tempLinkFormat = str_replace("首頁", "", $tempLinkFormat);
  147. $tempLinkFormat = str_replace("上一頁", "", $tempLinkFormat);
  148. $tempLinkFormat = str_replace("下一頁", "", $tempLinkFormat);
  149. $tempLinkFormat = str_replace("尾頁", "", $tempLinkFormat);
  150. $tempLinkFormat = str_replace("分頁", "", $tempLinkFormat);
  151. $tempLinkFormat = str_replace("跳轉", "", $tempLinkFormat);
  152. }
  153. }

  154. $this->pagestring.=$countStr." ".$currStr;
  155. if($this->page_count > 1){
  156. $this->pagestring.=$beginLink;
  157. if($this->page > 1){
  158. $this->pagestring.=$preLink;
  159. }
  160. $this->pagestring.=$currPage;
  161. if($this->page page_count){
  162. $this->pagestring.=$nextLink;
  163. }
  164. $this->pagestring.=$endLink.$jumpPage;
  165. }
  166. }
  167. /* Create page turning link string end */

  168. /* Get data begin */

  169. private function fetch_data() {

  170. if ($this->records) {
  171. $limit = ($this->page - 1) * $this->page_size . ",$this->page_size";
  172. $this ->page_data = $this->dbHelper->fetch($this->db_table, $this->condition, $this->sort, $limit);
  173. }
  174. }
  175. /* Get data end */

  176. /* Create paging begin */

  177. public function create_page() {

  178. $this-> ;set_page();
  179. $this->get_records();
  180. $this->page_count = ceil($this->records / $this->page_size);
  181. $this->page_link();
  182. $this->fetch_data();
  183. }
  184. /* Create pagination end */

  185. function __destruct() {

  186. }

  187. /* Function definition (class method) end */

  188. }
  189. /*
  190. Call method
  191. include_once 'PageLink.php';
  192. $pageLink = new PageLink() ; //Instantiate the object
  193. $pageLink->set("table", "*(or field)", "condition", "sort", "number of data items", "number of links per page", "page( list.php)", "Other parameters except ?page=1 (&id=1&name=test)");//Pass in parameters
  194. $pageLink->create_page();//Create paging
  195. $list = $ pageLink->get();//Get data
  196. echo $list[0];//Page link
  197. print_r($list[1]); //Print out the data, or loop it out as you need
  198. */
Copy code


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Build a React App With a Laravel Back End: Part 2, ReactBuild a React App With a Laravel Back End: Part 2, ReactMar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Notifications in LaravelNotifications in LaravelMar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.