search
HomeBackend DevelopmentPHP TutorialNice php+mysql paging class

  1. /*****************************
  2. * @Class name: page
  3. * @Parameter: $myde_total - Total number of records
  4. * $myde_size - The number of records displayed on one page
  5. * $myde_page - the current page
  6. * $myde_url - get the current url
  7. * @Function: paging implementation
  8. * @Author: Song Haige
  9. */
  10. class page {
  11. private $myde_total; //Total number of records
  12. private $myde_size; //Number of records displayed on one page
  13. private $myde_page; //Current page
  14. private $myde_page_count; //Total number of pages
  15. private $myde_i; //Number of starting pages
  16. private $myde_en; //Number of ending pages
  17. private $myde_url; //Get the current url
  18. /*
  19. * $show_pages
  20. * The format of page display, the number of pages showing links is 2*$show_pages+1.
  21. * 如$show_pages=2那么页面上显示就是[首页] [上页] 1 2 3 4 5 [下页] [尾页]
  22. */
  23. private $show_pages;
  24. public function __construct($myde_total=1,$myde_size=1,$myde_page=1,$myde_url,$show_pages=2){
  25. $this->myde_total = $this->numeric($myde_total);
  26. $this->myde_size = $this->numeric($myde_size);
  27. $this->myde_page = $this->numeric($myde_page);
  28. $this->myde_page_count = ceil($this->myde_total/$this->myde_size);
  29. $this->myde_url = $myde_url;
  30. if($this->myde_totalmyde_total=0;
  31. if($this->myde_pagemyde_page=1;
  32. if($this->myde_page_countmyde_page_count=1;
  33. if($this->myde_page>$this->myde_page_count) $this->myde_page=$this->myde_page_count;
  34. $this->limit = ($this->myde_page-1)*$this->myde_size;
  35. $this->myde_i=$this->myde_page-$show_pages;
  36. $this->myde_en=$this->myde_page+$show_pages;
  37. if($this->myde_i $this->myde_en=$this->myde_en+(1-$this->myde_i);
  38. $this->myde_i=1;
  39. }
  40. if($this->myde_en>$this->myde_page_count){
  41. $this->myde_i = $this->myde_i-($this->myde_en-$this->myde_page_count);
  42. $this->myde_en=$this->myde_page_count;
  43. }
  44. if($this->myde_imyde_i=1;
  45. }
  46. //检测是否为数字
  47. private function numeric($num){
  48. if(strlen($num)){
  49. if(!preg_match("/^[0-9]+$/",$num)){
  50. $num=1;
  51. }else{
  52. $num = substr($num,0,11);
  53. }
  54. }else{
  55. $num=1;
  56. }
  57. return $num;
  58. }
  59. //地址替换
  60. private function page_replace($page){
  61. return str_replace("{page}",$page,$this->myde_url);
  62. }
  63. //首页
  64. private function myde_home(){
  65. if($this->myde_page!=1){
  66. return "page_replace(1)."" title="首页">首页";
  67. }else{
  68. return "

    首页

    ";
  69. }
  70. }
  71. //上一页
  72. private function myde_prev(){
  73. if($this->myde_page!=1){
  74. return "page_replace($this->myde_page-1)."" title="上一页">上一页";
  75. }else{
  76. return "

    上一页

    ";
  77. }
  78. }
  79. //下一页
  80. private function myde_next(){
  81. if($this->myde_page!=$this->myde_page_count){
  82. return "page_replace($this->myde_page+1)."" title="下一页">下一页";
  83. }else{
  84. return"

    下一页

    ";
  85. }
  86. }
  87. //尾页
  88. private function myde_last(){
  89. if($this->myde_page!=$this->myde_page_count){
  90. return "page_replace($this->myde_page_count)."" title="尾页">尾页";
  91. }else{
  92. return "

    尾页

    ";
  93. }
  94. }
  95. //输出
  96. public function myde_write($id='page'){
  97. $str ="
    ";
  98. $str.=$this->myde_home();
  99. $str.=$this->myde_prev();
  100. if($this->myde_i>1){
  101. $str.="

    ...

    ";
  102. }
  103. for($i=$this->myde_i;$imyde_en;$i++){
  104. if($i==$this->myde_page){
  105. $str.="page_replace($i)."" title="第".$i."页" class="cur">$i";
  106. }else{
  107. $str.="page_replace($i)."" title="第".$i."页">$i";
  108. }
  109. }
  110. if( $this->myde_enmyde_page_count ){
  111. $str.="

    ...

    ";
  112. }
  113. $str.=$this->myde_next();
  114. $str.=$this->myde_last();
  115. $str.="

    ".$this->myde_page_count.

  116. "
  117. ".$this->myde_total."条数据

    ";
  118. $str.="
";
  • return $str;
  • }
  • }
  • ?>
  • 复制代码

    php+mysql paging principle: limit ($curpage-1)*$showrow,$showrow

    2, php display page code

    1. require_once('./page.class.php'); //Paging class
    2. $showrow = 3;//Number of rows displayed on one page
    3. $curpage = empty($_GET ['page'])?1:$_GET['page'];//The current page should also handle non-numeric situations
    4. $url = "?page={page}";//Paging address, if any Retrieval condition="?page={page}&q=".$_GET['q']
    5. //The code linking mysql is omitted, add it yourself during testing
    6. $sql = "SELECT * FROM table";
    7. $query = mysql_query($sql);
    8. $total = mysql_num_rows($query);//Total number of records
    9. if(!empty($_GET['page']) && $total !=0 && $curpage > ceil($ total/$showrow))
    10. $curpage = ceil($total_rows/$showrow);//The current page number is greater than the last page number, take the last page
    11. //Get the data
    12. $get_data = "select * from table limit ". ($curpage-1)*$showrow.",$showrow;";
    13. ...
    14. ?>
    15. Simple and universal PHP paging class-bbs.it-home.org
    16. < ;body>
  • if($total>$showrow){//The total number of records is greater than the number displayed on each page, display paging
  • $page = new page($total,$showrow,$curpage,$ url,2);
  • echo $page->myde_write();
  • }
  • ?>
  • 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

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

    Hot Tools

    SAP NetWeaver Server Adapter for Eclipse

    SAP NetWeaver Server Adapter for Eclipse

    Integrate Eclipse with SAP NetWeaver application server.

    Dreamweaver Mac version

    Dreamweaver Mac version

    Visual web development tools

    ZendStudio 13.5.1 Mac

    ZendStudio 13.5.1 Mac

    Powerful PHP integrated development environment

    Atom editor mac version download

    Atom editor mac version download

    The most popular open source editor

    SublimeText3 Linux new version

    SublimeText3 Linux new version

    SublimeText3 Linux latest version