修复分页查询BUG
parent
16ac0e0049
commit
02bb5f4927
11
README.md
11
README.md
|
@ -38,14 +38,13 @@ location ~* \.(db3)$ {
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
||||||
### 联系我
|
|
||||||
* Blog:[https://www.xiaoz.me/](https://www.xiaoz.me/)
|
|
||||||
* QQ:337003006
|
|
||||||
|
|
||||||
### 鸣谢
|
### 鸣谢
|
||||||
ImgURL的诞生离不开以下开源项目。
|
ImgURL的诞生离不开以下开源项目。
|
||||||
|
|
||||||
* LayUI: [https://github.com/sentsin/layui](https://github.com/sentsin/layui)
|
* LayUI: [https://github.com/sentsin/layui](https://github.com/sentsin/layui)
|
||||||
* class.upload.php: [https://github.com/verot/class.upload.php](https://github.com/verot/class.upload.php)
|
* class.upload.php: [https://github.com/verot/class.upload.php](https://github.com/verot/class.upload.php)
|
||||||
* clipBoard.js: [https://github.com/baixuexiyang/clipBoard.js](https://github.com/baixuexiyang/clipBoard.js)
|
* clipBoard.js: [https://github.com/baixuexiyang/clipBoard.js](https://github.com/baixuexiyang/clipBoard.js)
|
||||||
|
|
||||||
|
### 联系我
|
||||||
|
* Blog:[https://www.xiaoz.me/](https://www.xiaoz.me/)
|
||||||
|
* QQ:337003006
|
|
@ -31,13 +31,15 @@
|
||||||
|
|
||||||
//分页计算
|
//分页计算
|
||||||
$start = ($page - 1) * 12;
|
$start = ($page - 1) * 12;
|
||||||
$end = $page * 12;
|
//$end = $page * 12;
|
||||||
|
|
||||||
if(($page == '') || (!isset($page))) {
|
if(($page == '') || (!isset($page))) {
|
||||||
$page = 1;
|
$page = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//要查询的条数
|
||||||
|
$num = 12;
|
||||||
|
|
||||||
//判断类型
|
//判断类型
|
||||||
switch ($type) {
|
switch ($type) {
|
||||||
case 'user':
|
case 'user':
|
||||||
|
@ -45,17 +47,17 @@
|
||||||
$datas = $database->select("imginfo", "*", [
|
$datas = $database->select("imginfo", "*", [
|
||||||
"dir" => $config['userdir'],
|
"dir" => $config['userdir'],
|
||||||
"ORDER" => ["id" => "DESC"],
|
"ORDER" => ["id" => "DESC"],
|
||||||
"LIMIT" => [$start,$end]
|
"LIMIT" => [$start,$num]
|
||||||
]);
|
]);
|
||||||
//var_dump( $database->log() );
|
// var_dump( $database->log() );
|
||||||
//exit;
|
// exit;
|
||||||
return $datas;
|
return $datas;
|
||||||
break;
|
break;
|
||||||
case 'admin':
|
case 'admin':
|
||||||
$datas = $database->select("imginfo", "*", [
|
$datas = $database->select("imginfo", "*", [
|
||||||
"dir" => $config['admindir'],
|
"dir" => $config['admindir'],
|
||||||
"ORDER" => ["id" => "DESC"],
|
"ORDER" => ["id" => "DESC"],
|
||||||
"LIMIT" => [$start,$end]
|
"LIMIT" => [$start,$num]
|
||||||
]);
|
]);
|
||||||
return $datas;
|
return $datas;
|
||||||
break;
|
break;
|
||||||
|
@ -63,7 +65,7 @@
|
||||||
$datas = $database->select("imginfo", "*", [
|
$datas = $database->select("imginfo", "*", [
|
||||||
"level" => 3,
|
"level" => 3,
|
||||||
"ORDER" => ["id" => "DESC"],
|
"ORDER" => ["id" => "DESC"],
|
||||||
"LIMIT" => [$start,$end]
|
"LIMIT" => [$start,$num]
|
||||||
]);
|
]);
|
||||||
return $datas;
|
return $datas;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue