How to use bootstrap in styles here to write the link content
<nav aria-label="Page navigation"> <ul class="pagination"> <li> <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" aria-label="Previous"> <span aria-hidden="true">&laquo;</span> </a> </li> <li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >1</a></li> <li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >2</a></li> <li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >3</a></li> <li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >4</a></li> <li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >5</a></li> <li> <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" aria-label="Next"> <span aria-hidden="true">&raquo;</span> </a> </li> </ul> </nav> 1.turn upThinkphpIn-house,Then use the following file content to completely replace <?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2006-2014 All rights reserved. // +---------------------------------------------------------------------- // | Licensed ( /licenses/LICENSE-2.0 ) // +---------------------------------------------------------------------- // | Author: Madon Miaoer <zuojiazi@> <>// +---------------------------------------------------------------------- namespace Think; class Page{ public $firstRow; // Start line count public $listRows; // List displays row count per page public $parameter; // Parameters to be included when paging jumps public $totalRows; // Total row count public $totalPages; // Total number of pages for pages public $rollPage = 11;// Number of pages displayed per page in the paging bar public $lastSuffix = true; // Whether the last page displays the total number of pages private $p = 'p'; //Pagination parameter name private $url = ''; //Current link URL private $nowPage = 1; //Page display customization private $config = array( 'header' => '<li><span>common %TOTAL_ROW% Record<span class="sr-only"></span></span></li>', 'prev' => '<<', 'next' => '>>', 'first' => '1...', 'last' => '...%TOTAL_PAGE%', 'theme' => '%FIRST% %UP_PAGE% %LINK_PAGE% %DOWN_PAGE% %END%', ); /** * Architecture function * @param array $totalRows Total records * @param array $listRows Number of records displayed per page * @param array $parameter Parameter Pagination jump parameters */ public function __construct($totalRows, $listRows=20, $parameter = array()) { C('VAR_PAGE') && $this->p = C('VAR_PAGE'); //Set the paging parameter name /* Basic settings */ $this->totalRows = $totalRows; //Set the total number of records $this->listRows = $listRows; //Set the number of rows displayed per page $this->parameter = empty($parameter) ? $_GET : $parameter; $this->nowPage = empty($_GET[$this->p]) ? 1 : intval($_GET[$this->p]); $this->nowPage = $this->nowPage>0 ? $this->nowPage : 1; $this->firstRow = $this->listRows * ($this->nowPage - 1); } /** * Customize paging link settings * @param string $name Set name * @param string $value Set value */ public function setConfig($name,$value) { if(isset($this->config[$name])) { $this->config[$name] = $value; } } /** * Generate link URL * @param integer $page * @return string */ private function url($page){ return str_replace(urlencode('[PAGE]'), $page, $this->url); } /** * Assembly paging link * @return string */ public function show() { if(0 == $this->totalRows) return ''; /* Generate URL */ $this->parameter[$this->p] = '[PAGE]'; $this->url = U(ACTION_NAME, $this->parameter); /* Calculate paging information */ $this->totalPages = ceil($this->totalRows / $this->listRows); //Total page count if(!empty($this->totalPages) && $this->nowPage > $this->totalPages) { $this->nowPage = $this->totalPages; } /* Calculate paging zero time variable */ $now_cool_page = $this->rollPage/2; $now_cool_page_ceil = ceil($now_cool_page); $this->lastSuffix && $this->config['last'] = $this->totalPages; //Previous page $up_row = $this->nowPage - 1; $up_page = $up_row > 0 ? '<li><a class="prev" href="' . $this->url($up_row) . '" rel="external nofollow" >' . $this->config['prev'] . '</a></li>' : ''; //Next page $down_row = $this->nowPage + 1; $down_page = ($down_row <= $this->totalPages) ? '<li><a class="next" href="' . $this->url($down_row) . '" rel="external nofollow" >' . $this->config['next'] . '</a></li>' : ''; //Page 1 $the_first = ''; if($this->totalPages > $this->rollPage && ($this->nowPage - $now_cool_page) >= 1){ $the_first = '<li><a class="first" href="' . $this->url(1) . '" rel="external nofollow" >' . $this->config['first'] . '</a></li>'; } //The last page $the_end = ''; if($this->totalPages > $this->rollPage && ($this->nowPage + $now_cool_page) < $this->totalPages){ $the_end = '<li><a class="end" href="' . $this->url($this->totalPages) . '" rel="external nofollow" >' . $this->config['last'] . '</a></li>'; } //Digital connection $link_page = ""; for($i = 1; $i <= $this->rollPage; $i++){ if(($this->nowPage - $now_cool_page) <= 0 ){ $page = $i; }elseif(($this->nowPage + $now_cool_page - 1) >= $this->totalPages){ $page = $this->totalPages - $this->rollPage + $i; }else{ $page = $this->nowPage - $now_cool_page_ceil + $i; } if($page > 0 && $page != $this->nowPage){ if($page <= $this->totalPages){ $link_page .= '<li><a class="num" href="' . $this->url($page) . '" rel="external nofollow" >' . $page . '</a></li>'; }else{ break; } }else{ if($page > 0 && $this->totalPages != 1){ $link_page .= '<li class="active "><span>'.$page.'<span class="sr-only"></span></span></li>'; } } } //Replace the page content $page_str = str_replace( array('%HEADER%', '%NOW_PAGE%', '%UP_PAGE%', '%DOWN_PAGE%', '%FIRST%', '%LINK_PAGE%', '%END%', '%TOTAL_ROW%', '%TOTAL_PAGE%'), array($this->config['header'], $this->nowPage, $up_page, $down_page, $the_first, $link_page, $the_end, $this->totalRows, $this->totalPages), $this->config['theme']); return "<ul class='pagination'>{$page_str}</ul>"; } }
2. Related controller code
//All news public function all_news(){ $Article=M("Article"); $where['article_type']=1; //Query the total number of records that meet the requirements $count=$Article->where($where)->count(); //The total number of records passed in the instantiated paging class and the number of records displayed in the coal industry $Page=new \Think\Page($count,1); //Page display output $show=$Page->show(); // Conduct pagination data query. Note that the parameters of the limit method must use the properties of the Page class. $news=$Article->where($where)->order('pub_time')->field('id,title,institution_type,author_name,pub_time')->limit($Page->firstRow.','.$Page->listRows)->select(); //Assign data set $this->assign('news',$news); //Assignment paging output $this->assign('page',$show); $this->display(); }
Only required
<div class="panel-body center"> {$page}
The above is the thinkphp framework page class and bootstrap pagination (beautification) introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message. The editor will reply to everyone in time!