search
HomeBackend DevelopmentPHP TutorialHow to implement paging function in php based on SQLite

This article mainly introduces the paging function implemented by PHP based on SQLite, and analyzes the relevant skills and precautions for PHP to operate the SQLite database to implement the paging function based on specific examples. Friends in need can refer to the following

for details As follows:

The database file operation here uses the SQLite database operation class in the previous article "SQLite operation class implemented by PHP based on PDO [including operations such as addition, deletion, modification, query, and transaction]". Without further ado, go straight to the code:

<meta charset=&#39;utf-8&#39;>
<?php
class SqlitePage{
  public function __construct()
  {
    $this->table_name=&#39;&#39;;
    $this->tj=&#39;&#39;;
    $this->page_size=&#39;&#39;;
    $this->current_page=&#39;&#39;;
    $this->total_page=&#39;&#39;;
    include_once &#39;sqlite_db.php&#39;;
    $this->db=new SqliteDB();//可以调用他的操作方法了
  }
  function entrance($table_name,$page_size,$tj=&#39;&#39;)//sql中不包含limit  page_size为每页显示条数
  {
    // 首先获取当前页
    // sql = "select * from tab where "+条件+" order by "+排序+" limit "+要显示多少条记录+" offset "+跳过多少条记录;
    $this->page_size=$page_size;
    $this->table_name=$table_name;
    $this->tj=$tj;
    $this->total_page=ceil($this->db->total($this->table_name,$this->tj)/$this->page_size);
    if (!isset($_GET[&#39;page&#39;])) {
      $this->current_page=1;//如果没有page,则设置为默认第一页
    }
    else{
      $this->current_page=$_GET[&#39;page&#39;];
    }
    if ($this->current_page>$this->total_page) {//当当前页数目大于总页数,则设置当前页数为总页数
      $this->current_page=$this->total_page;
    }
    if ($this->current_page<1) {//当当前页数目大于总页数,则设置当前页数为总页数
      $this->current_page=1;
    }
    $tj=$this->tj.&#39; limit &#39;.$this->page_size.&#39; offset &#39;.($this->current_page-1)*$this->page_size;
    $result=$this->db->query($this->table_name,$tj);
    return $result;
  }
  function page_bar()
  {
    $old_url = $_SERVER["REQUEST_URI"];
    $check = strpos($old_url, &#39;?&#39;);
    $pre_urls=&#39;test&#39;;
    if ($check) {//如果urls中有?
      if(substr($old_url, $check+1) == &#39;&#39;)
      { //有问号,但是后面没有跟任何参数
        $first_urls=$old_url.&#39;page=1&#39;;//首页
        $pre_urls=$old_url.&#39;page=&#39;.($this->current_page-1);//上一页;
        $next_urls=$old_url.&#39;page=&#39;.($this->current_page+1);//下一页;
        $end_urls=$old_url.&#39;page=&#39;.$this->total_page;//末页
      }
      else {//有问号,并且有参数
        if (isset($_GET[&#39;page&#39;])) {//如果参数中包含page参数,则注销这个参数
          unset($_GET[&#39;page&#39;]);
          $old_url=&#39;http://&#39;.$_SERVER[&#39;HTTP_HOST&#39;].$_SERVER[&#39;PHP_SELF&#39;].&#39;?&#39;.http_build_query($_GET);
        }
        $first_urls=$old_url.&#39;&page=1&#39;;//首页
        $pre_urls=$old_url.&#39;&page=&#39;.($this->current_page-1);//上一页;
        $next_urls=$old_url.&#39;&page=&#39;.($this->current_page+1);//下一页;
        $end_urls=$old_url.&#39;&page=&#39;.$this->total_page;//末页
      }
    }
    else{// 如果没有问号(也就是说后面没有任何参数,则直接跟)
      $first_urls=$old_url.&#39;?page=1&#39;;
      $first_urls=$old_url.&#39;?page=1&#39;;//首页
      $pre_urls=$old_url.&#39;?page=&#39;.($this->current_page-1);//上一页;
      $next_urls=$old_url.&#39;?page=&#39;.($this->current_page+1);//下一页;
      $end_urls=$old_url.&#39;?page=&#39;.$this->total_page;//末页
    }
    // echo $this->table_name.&#39;table_name&#39;;
    return &#39;
    <p class="page">
      <a>【共&#39;.$this->total_page.&#39;页,第&#39;.$this->current_page.&#39;页】</a>
      <a href="&#39;.$first_urls.&#39;" rel="external nofollow" >首页</a>
      <a href="&#39;.$pre_urls.&#39;" rel="external nofollow" >上一页</a>
      <a href="&#39;.$next_urls.&#39;" rel="external nofollow" >下一页</a>
      <a href="&#39;.$end_urls.&#39;" rel="external nofollow" >末页</a>
    </p>
    &#39;;
  }
  public function get_total_page()
  {
    return ceil($this->total_record/$this->page_size);
  }
}
// $page=new PrePage();
// $res=$page->entrance(&#39;log&#39;,10);
// echo "<hr />";
// foreach ($res as $key => $row) {
// echo $row[&#39;urls&#39;].&#39;<br />&#39;;
// }
// echo $page->page_bar();
?>

SQLite Detailed explanation of PHP interface

PHP operationSQLiteDatabase classes and usage

In PHP SQLiteoperation class implemented by PDO

The above is the detailed content of How to implement paging function in php based on SQLite. For more information, please follow other related articles on the PHP Chinese website!

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
PHP Performance Tuning for High Traffic WebsitesPHP Performance Tuning for High Traffic WebsitesMay 14, 2025 am 12:13 AM

ThesecrettokeepingaPHP-poweredwebsiterunningsmoothlyunderheavyloadinvolvesseveralkeystrategies:1)ImplementopcodecachingwithOPcachetoreducescriptexecutiontime,2)UsedatabasequerycachingwithRedistolessendatabaseload,3)LeverageCDNslikeCloudflareforservin

Dependency Injection in PHP: Code Examples for BeginnersDependency Injection in PHP: Code Examples for BeginnersMay 14, 2025 am 12:08 AM

You should care about DependencyInjection(DI) because it makes your code clearer and easier to maintain. 1) DI makes it more modular by decoupling classes, 2) improves the convenience of testing and code flexibility, 3) Use DI containers to manage complex dependencies, but pay attention to performance impact and circular dependencies, 4) The best practice is to rely on abstract interfaces to achieve loose coupling.

PHP Performance: is it possible to optimize the application?PHP Performance: is it possible to optimize the application?May 14, 2025 am 12:04 AM

Yes,optimizingaPHPapplicationispossibleandessential.1)ImplementcachingusingAPCutoreducedatabaseload.2)Optimizedatabaseswithindexing,efficientqueries,andconnectionpooling.3)Enhancecodewithbuilt-infunctions,avoidingglobalvariables,andusingopcodecaching

PHP Performance Optimization: The Ultimate GuidePHP Performance Optimization: The Ultimate GuideMay 14, 2025 am 12:02 AM

ThekeystrategiestosignificantlyboostPHPapplicationperformanceare:1)UseopcodecachinglikeOPcachetoreduceexecutiontime,2)Optimizedatabaseinteractionswithpreparedstatementsandproperindexing,3)ConfigurewebserverslikeNginxwithPHP-FPMforbetterperformance,4)

PHP Dependency Injection Container: A Quick StartPHP Dependency Injection Container: A Quick StartMay 13, 2025 am 12:11 AM

APHPDependencyInjectionContainerisatoolthatmanagesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itactsasacentralhubforcreatingandinjectingdependencies,thusreducingtightcouplingandeasingunittesting.

Dependency Injection vs. Service Locator in PHPDependency Injection vs. Service Locator in PHPMay 13, 2025 am 12:10 AM

Select DependencyInjection (DI) for large applications, ServiceLocator is suitable for small projects or prototypes. 1) DI improves the testability and modularity of the code through constructor injection. 2) ServiceLocator obtains services through center registration, which is convenient but may lead to an increase in code coupling.

PHP performance optimization strategies.PHP performance optimization strategies.May 13, 2025 am 12:06 AM

PHPapplicationscanbeoptimizedforspeedandefficiencyby:1)enablingopcacheinphp.ini,2)usingpreparedstatementswithPDOfordatabasequeries,3)replacingloopswitharray_filterandarray_mapfordataprocessing,4)configuringNginxasareverseproxy,5)implementingcachingwi

PHP Email Validation: Ensuring Emails Are Sent CorrectlyPHP Email Validation: Ensuring Emails Are Sent CorrectlyMay 13, 2025 am 12:06 AM

PHPemailvalidationinvolvesthreesteps:1)Formatvalidationusingregularexpressionstochecktheemailformat;2)DNSvalidationtoensurethedomainhasavalidMXrecord;3)SMTPvalidation,themostthoroughmethod,whichchecksifthemailboxexistsbyconnectingtotheSMTPserver.Impl

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

Video Face Swap

Video Face Swap

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

Hot Article

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use