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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
| <?php
/*
* 一个通用的分页类,基本上使用任何URL形式
*
* @author : Cluries <vcommail#gmail.com>
* @link : http://intgu.com
* @version 0.0.1 2009-02-05 (Require PHP version 5.0 or later)
*
* Usage Example Ⅰ :
* include 'Pagination.php';
* $pagi = new Pagination();
* $pagi->config(500,20);
* $pagi->pagi();
*
* Usage Example Ⅱ :
* include 'Pagination.php';
* $pagi = new Pagination();
* $pagi->config(500,20,'pageNumber',false,10,'/');
* $pagi->pagi();
*
*
*/
class Pagination {
private $config;
function __construct($recordCount = '', $perNumber = '', $flag = 'page', $showListNum = 10,$nowPage = false, $delimiter = false) {
$this->config = array ();
if ($recordCount != '' && $perNumber != '') {
$this->config ( $recordCount, $perNumber, $flag, $showListNum, $nowPage, $delimiter );
;
}
}
public function config($recordCount, $perNumber, $flag = 'page', $showListNum = 10, $nowPage = false, $delimiter = false) {
if ($recordCount < 0 || $perNumber < 0) {
$this->error ( '参数设置错误,总的记录数和每页数量不能小于0' );
}
if ($flag == '') {
$this->error ( '参数设置错误,页码标志不能为空' );
}
if ($showListNum < 1) {
$this->error ( '显示数量不能小于1' );
}
$this->config ['recordCount'] = intval ( $recordCount );
$this->config ['perNumber'] = intval ( $perNumber );
$this->config ['flag'] = trim ( $flag );
$this->config ['nowPage'] = $nowPage;
$this->config ['showListNum'] = $showListNum;
$this->config ['delimiter'] = $delimiter;
return;
}
public function pagi() {
echo $this->process ();
}
public function getPagi() {
return $this->process ();
}
private function process() {
foreach ( $this->config as $v ) {
if ($v === '') {
$this->error ( '请先运行:config()' );
}
}
if (! $this->config ['nowPage']) {
if (isset ( $_GET [$this->config ['flag']] )) {
$this->config ['nowPage'] = intval ( $_GET [$this->config ['flag']] );
} else {
$this->config ['nowPage'] = intval ( $_REQUEST [$this->config ['flag']] );
}
}
$pageNum = ceil ( $this->config ['recordCount'] / $this->config ['perNumber'] );
if ($this->config ['nowPage'] <= 0) {
$this->config ['nowPage'] = 1;
}
if ($this->config ['nowPage'] > $pageNum) {
$this->config ['nowPage'] = $pageNum;
}
$start = $this->config ['nowPage'] - floor ( $this->config ['showListNum'] / 2 );
$start = ($start <= 0) ? 1 : $start;
$end = $start + $this->config ['showListNum'];
$end = ($end >= $pageNum) ? $pageNum : $end;
if ($pageNum <= $this->config ['showListNum']) {
$start = 1;
$end = $pageNum;
}
$html = '<pagi> Page ' . $this->config ['nowPage'] . ' of ' . $pageNum . '</pagi>';
if ($this->config ['nowPage'] > 1) {
$html .= '<a name="nav" href="' . $this->pageNumberReplace ( $this->config ['nowPage'] - 1 ) . '" title="上一页">«</a>';
} else {
$html .= '<a name="nav">«</a>';
}
if ($start > 1) {
$dot = $start - floor ( $this->config ['showListNum'] / 2 );
$dot = $dot < 1 ? 1 : $dot;
$html .= '<a href="' . $this->pageNumberReplace ( 1 ) . '">1</a> <a href="' . $this->pageNumberReplace ( $dot ) . '"> ... </a>';
}
for($i = $start; $i <= $end; $i ++) {
if ($i == $this->config ['nowPage']) {
$html .= '<a name="nowPage">' . $i . '</a>';
} else {
$html .= '<a href="' . $this->pageNumberReplace ( $i ) . '">' . $i . '</a>';
}
}
if ($end < $pageNum) {
$dot = $end + floor ( $this->config ['showListNum'] / 2 );
$dot = $dot > $pageNum ? $pageNum : $dot;
$html .= '<a href="' . $this->pageNumberReplace ( $dot ) . '"> ... </a><a href="' . $this->pageNumberReplace ( $pageNum ) . '">' . $pageNum . '</a>';
}
if ($this->config ['nowPage'] < $pageNum) {
$html .= '<a name="nav" href="' . $this->pageNumberReplace ( $this->config ['nowPage'] + 1 ) . '" title="下一页">»</a>';
} else {
$html .= '<a name="nav">»</a>';
}
return $html;
}
private function pageNumberReplace($number) {
if (! $this->config ['delimiter']) {
return $this->pageNumberReplaceDefault ( $number );
}
return $this->pageNumberReplaceDelimiter ( $number );
}
private function pageNumberReplaceDefault($number) {
$url = $_SERVER ['REQUEST_URI'];
$pattern = '/([\?&]' . $this->parseRegStr ( $this->config ['flag'] ) . '=)\w+/i';
if (preg_match ( $pattern, $url )) {
$url = preg_replace ( $pattern, "\${1}" . $number, $url );
return $url;
} else if (preg_match ( '/(\.php)?\?/i', $url )) {
return $url . '&' . $this->config ['flag'] . '=' . $number;
} else {
return $url . '?' . $this->config ['flag'] . '=' . $number;
}
}
private function pageNumberReplaceDelimiter($number) {
$url = $_SERVER ['REQUEST_URI'];
$delimiter = $this->parseRegStr ( $this->config ['delimiter'] );
$pattern = '/(' . $delimiter . $this->parseRegStr ( $this->config ['flag'] ) . $delimiter . ')\w+/i';
if (preg_match ( $pattern, $url )) {
return preg_replace ( $pattern, "\${1}" . $number, $url );
;
} else {
$pattern = '/' . $delimiter . '$/i';
if (preg_match ( $pattern, $url )) {
return $url . $this->config ['flag'] . $this->config ['delimiter'] . $number;
}
return $url . $this->config ['delimiter'] . $this->config ['flag'] . $this->config ['delimiter'] . $number;
}
}
private function parseRegStr($str) {
$als = array ('/', '(', '[', '{', ',', '$', '^', '|', '?', '+', '*', '.', '}', ']', ')' );
$new_als = array ('\/', '\(', '\[', '\{', '\,', '\$', '\^', '\|', '\?', '\+', '\*', '\.', '\}', '\]', '\)' );
return str_replace ( $als, $new_als, $str );
}
private function error($e) {
$e = '<strong>Error:</strong>' . $e;
echo $e;
exit ();
}
function __destruct() {
}
}
?> |