Home php教程 php手册 3行代码的分页算法(求起始页和结束页)

3行代码的分页算法(求起始页和结束页)

Jun 21, 2016 am 08:52 AM
count end link start

 

  涉及到分页时, 除非只显示上一页/下一页, 否则需要计算起始页和结束页. 看过很多代码都是用大量的if-else来实现, 代码量大, 又不简洁. 现在提供一种只需要3行代码的算法.

  一个好的分页算法, 应该具有下面的优点:

  当前页码应该尽量在正中间.

  如果”首页”和”尾页”不可用(当前处于第一页或最后一页), 不要隐藏这两组文字, 以免链接按钮位置变动.

  算法简单.

  下面的算法具有前面1和3两个优点.

  PHP:

  // $curr_index, 当前页码.

  // $link_count, 链接数量.

  // $page_count, 当前的数据的总页数.

  // $start, 显示时的起始页码.

  // $end, 显示时的终止页码.

  $start = max(1, $curr_index - intval($link_count/2));

  $end = min($start + $link_count - 1, $page_count);

  $start = max(1, $end - $link_count + 1);

  JavaScript:

  start = Math.max(1, curr_index - parseInt(link_count/2));

  end = Math.min(page_count, start + link_count - 1);

  start = Math.max(1, end - link_count + 1);



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

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 ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

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)

Which key is the end key on the keyboard? Which key is the end key on the keyboard? Mar 10, 2023 am 11:30 AM

The keyboard end is the key that displays the word "End" on the keyboard; when editing text, if the cursor is not at the end, press the END key, and the cursor will be positioned at the end; if it is a document, press the "CTRL+END" combination After pressing the key, the cursor will be positioned at the end of the document.

What should I do if docker start cannot start? What should I do if docker start cannot start? Oct 21, 2022 pm 03:43 PM

Solution to docker start failure: 1. Check the running status, and then release the occupied memory through the "echo 3 > /proc/sys/vm/drop_caches" command; 2. Use "$netstat -nltp|grep .. ." command to check whether the port has been occupied. If it is found to be occupied after going online, change it to an available port and restart.

The difference between counta and count The difference between counta and count Nov 20, 2023 am 10:01 AM

The Count function is used to count the number of numbers in a specified range. It ignores text, logical values, and null values, but counts empty cells. The Count function only counts the number of cells that contain actual numbers. The CountA function is used to count the number of non-empty cells in a specified range. It not only counts cells containing actual numbers, but also counts the number of non-empty cells containing text, logical values, and formulas.

What to do if node start reports an error What to do if node start reports an error Dec 29, 2022 pm 01:55 PM

Solution to node start error: 1. Execute "node xx.js" directly in the terminal; 2. Add start startup item "scripts": {"test": "echo \"Error: no test specified\" && exit 1 ","start":"node service.js"}"; 3. Re-execute "npm start".

The difference between link and import is explained in detail: What are the differences between them? The difference between link and import is explained in detail: What are the differences between them? Jan 06, 2024 am 08:19 AM

In-depth analysis: What is the difference between link and import? When developing web pages or applications, we often need to introduce external CSS files or JavaScript libraries to enhance or customize our code. In this process, link and import are two commonly used methods. Although their purpose is to introduce external resources, there are some differences in specific usage. Syntax and location: link: Use the link tag to link external resources into the HTML file, usually located at the head of the HTML document

What is the difference between link tag and import? What is the difference between link tag and import? Aug 28, 2023 am 11:19 AM

The differences between link tags and import include syntax and usage, functions and features, loading timing, compatibility and support, etc. Detailed introduction: 1. Syntax and usage. The link tag is an HTML tag, used to introduce external resources into HTML documents, such as CSS style sheets, JavaScript scripts, icons, etc. import is the module import syntax in ES6, used in JavaScript files. Introduce external modules; 2. Functions and features. The link tag can introduce a variety of resources, such as CSS style sheets, icons, etc.

The difference between link tag and a tag The difference between link tag and a tag Feb 19, 2024 pm 06:16 PM

The link tag and the a tag are two commonly used tags in HTML. They have different functions and usages. link tag The link tag is mainly used to introduce external resources into HTML documents. It is usually used to introduce external style sheets (CSS files). It can also be used to introduce other types of files, such as image files, audio files, etc. The link tag is located within the tag, usually written after other metadata (such as tags). Basic grammatical format of link tag

Comparing link and import: What are their differences? Comparing link and import: What are their differences? Jan 06, 2024 pm 08:23 PM

The link vs. import debate: What’s the difference? In development and programming, we often need to interact with other files or modules. In order to achieve this interaction, linking and importing are two commonly used methods. However, many people may not know the difference between link and import and when to use them. This article will introduce the difference between link and import in detail and provide code examples. First, let's understand the concept of link. Link

See all articles