国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Home Backend Development PHP Tutorial Nice php+mysql paging class

Nice php+mysql paging class

Jul 25, 2016 am 08:52 AM

  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_total<0) $this->myde_total=0;
  31. if($this->myde_page<1) $this->myde_page=1;
  32. if($this->myde_page_count<1) $this->myde_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<1){
  38. $this->myde_en=$this->myde_en+(1-$this->myde_i);
  39. $this->myde_i=1;
  40. }
  41. if($this->myde_en>$this->myde_page_count){
  42. $this->myde_i = $this->myde_i-($this->myde_en-$this->myde_page_count);
  43. $this->myde_en=$this->myde_page_count;
  44. }
  45. if($this->myde_i<1)$this->myde_i=1;
  46. }
  47. //檢測是否為數(shù)字
  48. private function numeric($num){
  49. if(strlen($num)){
  50. if(!preg_match("/^[0-9]+$/",$num)){
  51. $num=1;
  52. }else{
  53. $num = substr($num,0,11);
  54. }
  55. }else{
  56. $num=1;
  57. }
  58. return $num;
  59. }
  60. //地址替換
  61. private function page_replace($page){
  62. return str_replace("{page}",$page,$this->myde_url);
  63. }
  64. //首頁
  65. private function myde_home(){
  66. if($this->myde_page!=1){
  67. return "page_replace(1)."" title="首頁">首頁";
  68. }else{
  69. return "

    首頁

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

    上一頁

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

    下一頁

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

    尾頁

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

    ...

    ";
  103. }
  104. for($i=$this->myde_i;$i<=$this->myde_en;$i++){
  105. if($i==$this->myde_page){
  106. $str.="page_replace($i)."" title="第".$i."頁" class="cur">$i";
  107. }else{
  108. $str.="page_replace($i)."" title="第".$i."頁">$i";
  109. }
  110. }
  111. if( $this->myde_en<$this->myde_page_count ){
  112. $str.="

    ...

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

    ".$this->myde_page_count.

  117. "".$this->myde_total."條數(shù)據(jù)

    ";
  118. $str.="
";
  • return $str;
  • }
  • }
  • ?>
  • 復(fù)制代碼

    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();
  • }
  • ?>
  • Copy Code


    Statement of this Website
    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

    Hot AI Tools

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    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.

    Clothoff.io

    Clothoff.io

    AI clothes remover

    Video Face Swap

    Video Face Swap

    Swap faces in any video effortlessly with our completely free AI face swap tool!

    Hot Tools

    Notepad++7.3.1

    Notepad++7.3.1

    Easy-to-use and free code editor

    SublimeText3 Chinese version

    SublimeText3 Chinese version

    Chinese version, very easy to use

    Zend Studio 13.0.1

    Zend Studio 13.0.1

    Powerful PHP integrated development environment

    Dreamweaver CS6

    Dreamweaver CS6

    Visual web development tools

    SublimeText3 Mac version

    SublimeText3 Mac version

    God-level code editing software (SublimeText3)

    How do I implement authentication and authorization in PHP? How do I implement authentication and authorization in PHP? Jun 20, 2025 am 01:03 AM

    TosecurelyhandleauthenticationandauthorizationinPHP,followthesesteps:1.Alwayshashpasswordswithpassword_hash()andverifyusingpassword_verify(),usepreparedstatementstopreventSQLinjection,andstoreuserdatain$_SESSIONafterlogin.2.Implementrole-basedaccessc

    How can you handle file uploads securely in PHP? How can you handle file uploads securely in PHP? Jun 19, 2025 am 01:05 AM

    To safely handle file uploads in PHP, the core is to verify file types, rename files, and restrict permissions. 1. Use finfo_file() to check the real MIME type, and only specific types such as image/jpeg are allowed; 2. Use uniqid() to generate random file names and store them in non-Web root directory; 3. Limit file size through php.ini and HTML forms, and set directory permissions to 0755; 4. Use ClamAV to scan malware to enhance security. These steps effectively prevent security vulnerabilities and ensure that the file upload process is safe and reliable.

    What are the differences between == (loose comparison) and === (strict comparison) in PHP? What are the differences between == (loose comparison) and === (strict comparison) in PHP? Jun 19, 2025 am 01:07 AM

    In PHP, the main difference between == and == is the strictness of type checking. ==Type conversion will be performed before comparison, for example, 5=="5" returns true, and ===Request that the value and type are the same before true will be returned, for example, 5==="5" returns false. In usage scenarios, === is more secure and should be used first, and == is only used when type conversion is required.

    How do I perform arithmetic operations in PHP ( , -, *, /, %)? How do I perform arithmetic operations in PHP ( , -, *, /, %)? Jun 19, 2025 pm 05:13 PM

    The methods of using basic mathematical operations in PHP are as follows: 1. Addition signs support integers and floating-point numbers, and can also be used for variables. String numbers will be automatically converted but not recommended to dependencies; 2. Subtraction signs use - signs, variables are the same, and type conversion is also applicable; 3. Multiplication signs use * signs, which are suitable for numbers and similar strings; 4. Division uses / signs, which need to avoid dividing by zero, and note that the result may be floating-point numbers; 5. Taking the modulus signs can be used to judge odd and even numbers, and when processing negative numbers, the remainder signs are consistent with the dividend. The key to using these operators correctly is to ensure that the data types are clear and the boundary situation is handled well.

    How can you interact with NoSQL databases (e.g., MongoDB, Redis) from PHP? How can you interact with NoSQL databases (e.g., MongoDB, Redis) from PHP? Jun 19, 2025 am 01:07 AM

    Yes, PHP can interact with NoSQL databases like MongoDB and Redis through specific extensions or libraries. First, use the MongoDBPHP driver (installed through PECL or Composer) to create client instances and operate databases and collections, supporting insertion, query, aggregation and other operations; second, use the Predis library or phpredis extension to connect to Redis, perform key-value settings and acquisitions, and recommend phpredis for high-performance scenarios, while Predis is convenient for rapid deployment; both are suitable for production environments and are well-documented.

    How do I stay up-to-date with the latest PHP developments and best practices? How do I stay up-to-date with the latest PHP developments and best practices? Jun 23, 2025 am 12:56 AM

    TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource

    What is PHP, and why is it used for web development? What is PHP, and why is it used for web development? Jun 23, 2025 am 12:55 AM

    PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti

    How to set PHP time zone? How to set PHP time zone? Jun 25, 2025 am 01:00 AM

    TosettherighttimezoneinPHP,usedate_default_timezone_set()functionatthestartofyourscriptwithavalididentifiersuchas'America/New_York'.1.Usedate_default_timezone_set()beforeanydate/timefunctions.2.Alternatively,configurethephp.inifilebysettingdate.timez

    See all articles