thinkphp content pagination code sharing, thinkphp page sharing
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
copy Code code is as follows:
$arr _con=explode (' _ueditor_page_break_tag_ ', $dy [' art_content ']); /split content
$pagenum =count ($arr _con);//Count pages
//based on the value of the current display page
if (intval ($_get[' P ') ==0) {
$p = 1;
}else{
$p =intval ($_get[' P ']);
}
//Gets 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. = ' ';
}
else{
$show. = ' ['. $i. '] ';
}
}
//Dump ($arr _con);
$show = $pagenum ==1? ': $show;//page code display judgment
{$arr _con[$p-1]} The!--here is the data just entered in this article, array key values starting from 0-->
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/942986.html www.bkjia.com true http://www.bkjia.com/PHPjc/942986.html techarticle thinkphp content page code sharing, thinkphp page sharing in the use of thinkphp developed content management system inside, a lot of things to develop their own, content paging of course, also to develop their own ...