简单php分页算法

PHP分页算法

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<html>
<head>
<link rel="stylesheet" href="//cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="//cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<script src="//cdn.bootcss.com/jquery/1.11.3/jquery.min.js"></script>
<script src="//cdn.bootcss.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<?php
$page = isset($_GET['page']) ? $_GET['page'] : 1;
echo getPaginationString($page, $total = 80, $limit = 5, $adjacents = 1, $targetpage = '/php/demo.php', $pagestring = '?page=');

//$page = isset($_GET['page']) ? $_GET['page'] : 1;
//echo getPaginationString2($page, $total = 80, $limit = 5, $showPageCount = 5, $targetpage = '/php/demo.php', $pagestring = '?page=');
?>
</div>
</body>
</html>
<?php
//function to return the pagination string
function getPaginationString($page = 1, $totalitems, $limit = 15, $adjacents = 3, $targetpage = "/", $pagestring = "?page=")
{
//defaults
if(!$adjacents) $adjacents = 1;
if(!$limit) $limit = 15;
if(!$page) $page = 1;
if(!$targetpage) $targetpage = "/";

//other vars
$prev = $page - 1; //previous page is page - 1
$next = $page + 1; //next page is page + 1
$lastpage = ceil($totalitems / $limit); //lastpage is = total items / items per page, rounded up.
$lpm1 = $lastpage - 1; //last page minus 1

/*
Now we apply our rules and draw the pagination object.
We're actually saving the code to a variable in case we want to draw it more than once.
*/
$pagination = "";
if($lastpage > 1)
{
$pagination .= "

";

//previous button
if ($page > 1)
$pagination .= "* [« prev](\)
";
else
$pagination .= "* <span class=\"disabled\">« prev</span>
";

//pages
if ($lastpage < 7 + ($adjacents * 2)) //not enough pages to bother breaking it up
{
for ($counter = 1; $counter <= $lastpage; $counter++)
{
if ($counter == $page)
$pagination .= "* <span class=\"current\">$counter</span>
";
else
$pagination .= "* [$counter](\)
";
}
}
elseif($lastpage >= 7 + ($adjacents * 2)) //enough pages to hide some
{
//close to beginning; only hide later pages
if($page < 1 + ($adjacents * 3))
{
for ($counter = 1; $counter < 4 + ($adjacents * 2); $counter++)
{
if ($counter == $page)
$pagination .= "* <span class=\"current\">$counter</span>
";
else
$pagination .= "* [$counter](\)
";
}
$pagination .= "* <span class=\"elipses\">...</span>
";
$pagination .= "* [$lpm1](\)
";
$pagination .= "* [$lastpage](\)
";
}
//in middle; hide some front and some back
elseif($lastpage - ($adjacents * 2) > $page && $page > ($adjacents * 2))
{
$pagination .= "* [1](\)
";
$pagination .= "* [2](\)
";
$pagination .= "* <span class=\"elipses\">...</span>
";
for ($counter = $page - $adjacents; $counter <= $page + $adjacents; $counter++)
{
if ($counter == $page)
$pagination .= "* <span class=\"current\">$counter</span>
";
else
$pagination .= "* [$counter](\)
";
}
$pagination .= "* [...](javascript:;)
";
$pagination .= "* [$lpm1](\)
";
$pagination .= "* [$lastpage](\)
";
}
//close to end; only hide early pages
else
{
$pagination .= "* [1](\)
";
$pagination .= "* [2](\)
";
$pagination .= "* <span class=\"elipses\">...</span>
";
for ($counter = $lastpage - (1 + ($adjacents * 3)); $counter <= $lastpage; $counter++)
{
if ($counter == $page)
$pagination .= "* <span class=\"current\">$counter</span>
";
else
$pagination .= "* [$counter](\)
";
}
}
}

//next button
if ($page < $counter - 1)
$pagination .= "* [next »](\)
";
else
$pagination .= "* <span class=\"disabled\">next &raquo;</span>\n";
}

return $pagination;

}

/**
function getPaginationString2($page = null, $totalItems = null, $limit = 5, $showPageCount = 4, $target = '/', $pageString = '?page=')
{
$totalPage = ceil($totalItems / $limit); // compute total page

if(($offset = ($page + floor($showPageCount / 2))) > $totalPage)
$offset = $totalPage;

if($page + floor($showPageCount / 2) > $totalPage)
$counter = $totalPage - floor($showPageCount / 2);
else
$counter = ($computerPage = $page - floor($showPageCount / 2)) > 0 ? $computerPage : 1;

$pagination = '

';
for($counter; $counter < $offset; $counter++)
{
$pagination .= '* ['.$counter . ']()';

return $pagination;
}
*/