thinkphp content Pagination code sharing
This article mainly for you to share a piece of thinkphp content page code, from my project extracted, very useful, recommended to small partners.
In the use of thinkphp development of the content management system inside, a lot of things to develop their own, the content of course also to develop their own, the following is my data according to check the method of self-collation:
1, the first is to edit content in the background when you need to insert a page break, different editor page breaks are naturally different
2, then is to read the content of the article, according to the page to divide the content into multiple arrays, where the value of the current is the number of pages, according to the number of pages to read the segmented array
The code is as follows:
The code is as follows:
$arr _con=explode (' _ueditor_page_break_tag_ ', $dy [' art_content ']);//split content
$pagenum =count ($arr _con);//Count pages
Determine the number of pages currently displayed based on the value passed
if (intval ($_get[' P ']) ==0) {
$p = 1;
}else{
$p =intval ($_get[' P ');
}
Get the URL of the current page
$url = $_server[' Request_uri '). (Strpos ($_server[' Request_uri '), '? ')? ":"? ";
$parse = Parse_url ($url);
if (Isset ($parse [' query '])) {
Parse_str ($parse [' query '], $params);
unset ($params [' P ']);
$url = $parse [' Path ']. Http_build_query ($params);
}
How many pages are all looped out
for ($i =1; $i <= $pagenum; $i + +) {
if ($i = = $p) {
$show. = ' ['. $i. ']';
}
else{
$show. = ' ['. $i. '] ';
}
}
Dump ($arr _con);
$show = $pagenum ==1? ": $show;//pagination Code display judgment
{$arr _con[$p-1]}
Note: If you are using thinkphp, and you have configured static,
Then modify the configuration file ' news:article ' =>array (' {: module}/{:action}_{art_id}_{p} ', 0), add a P parameter
The above is for reference only, in particular, according to their own specific projects to adjust, I believe that the small partners can expand it very well.
http://www.bkjia.com/PHPjc/971929.html www.bkjia.com true http://www.bkjia.com/PHPjc/971929.html techarticle thinkphp content page code sharing this article mainly for you to share a piece of self-occupied thinkphp content page code, extracted from my project, very easy to use, here is recommended to small ...