修复分页查询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的诞生离不开以下开源项目。
|
||||
|
||||
* 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)
|
||||
* 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;
|
||||
$end = $page * 12;
|
||||
//$end = $page * 12;
|
||||
|
||||
if(($page == '') || (!isset($page))) {
|
||||
$page = 1;
|
||||
}
|
||||
|
||||
|
||||
//要查询的条数
|
||||
$num = 12;
|
||||
|
||||
//判断类型
|
||||
switch ($type) {
|
||||
case 'user':
|
||||
|
@ -45,17 +47,17 @@
|
|||
$datas = $database->select("imginfo", "*", [
|
||||
"dir" => $config['userdir'],
|
||||
"ORDER" => ["id" => "DESC"],
|
||||
"LIMIT" => [$start,$end]
|
||||
"LIMIT" => [$start,$num]
|
||||
]);
|
||||
//var_dump( $database->log() );
|
||||
//exit;
|
||||
// var_dump( $database->log() );
|
||||
// exit;
|
||||
return $datas;
|
||||
break;
|
||||
case 'admin':
|
||||
$datas = $database->select("imginfo", "*", [
|
||||
"dir" => $config['admindir'],
|
||||
"ORDER" => ["id" => "DESC"],
|
||||
"LIMIT" => [$start,$end]
|
||||
"LIMIT" => [$start,$num]
|
||||
]);
|
||||
return $datas;
|
||||
break;
|
||||
|
@ -63,7 +65,7 @@
|
|||
$datas = $database->select("imginfo", "*", [
|
||||
"level" => 3,
|
||||
"ORDER" => ["id" => "DESC"],
|
||||
"LIMIT" => [$start,$end]
|
||||
"LIMIT" => [$start,$num]
|
||||
]);
|
||||
return $datas;
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue