切换导航条
此项目
正在载入...
登录
root
/
sleep
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
董瑞恩
6 years ago
提交
267fa448d4ed71794893cf71cfdeab53414841cf
1 个父辈
d4b578a9
1 个管道 的构建
通过
耗费 0 秒
order
变更
1
构建
1
隐藏空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
15 行增加
和
4 行删除
app/portal/controller/AdminStatisticsController.php
app/portal/controller/AdminStatisticsController.php
查看文件 @
267fa44
...
...
@@ -33,13 +33,13 @@ class AdminStatisticsController extends AdminBaseController{
for
(
$i
=
0
;
$i
<=
15
;
$i
++
){
$week
[
15
-
$i
]
=
strtotime
(
date
(
'Ymd'
,
strtotime
(
"-
$i
week"
)));
}
$
where
=
array
();
$
Week
=
array
();
for
(
$i
=
0
;
$i
<
15
;
$i
++
){
$
where
[
$i
]
=
[
$week
[
$i
],
$week
[
$i
+
1
]];
$
Week
[
$i
]
=
[
$week
[
$i
],
$week
[
$i
+
1
]];
}
$Week_statistics
=
array
();
for
(
$i
=
0
;
$i
<
15
;
$i
++
){
$Week_statistics
[]
=
Db
::
name
(
'order'
)
->
where
(
'start_time'
,
'between'
,
$
where
[
$i
])
->
count
();
$Week_statistics
[]
=
Db
::
name
(
'order'
)
->
where
(
'start_time'
,
'between'
,
$
Week
[
$i
])
->
count
();
}
$this
->
assign
(
'weekData'
,
json_encode
(
$Week_statistics
));
...
...
@@ -48,7 +48,18 @@ class AdminStatisticsController extends AdminBaseController{
for
(
$i
=
0
;
$i
<=
24
;
$i
++
){
$month
[
24
-
$i
]
=
strtotime
(
date
(
'Y-m-1'
,
strtotime
(
"-
$i
Month"
)));
}
dump
(
$month
);
$Month
=
array
();
for
(
$i
=
0
;
$i
<
24
;
$i
++
){
$Month
[
$i
]
=
[
$month
[
$i
],
$month
[
$i
+
1
]];
}
$Month_statistics
=
array
();
for
(
$i
=
0
;
$i
<
15
;
$i
++
){
$Month_statistics
[]
=
Db
::
name
(
'order'
)
->
where
(
'start_time'
,
'between'
,
$Month
[
$i
])
->
count
();
}
$this
->
assign
(
'monthData'
,
json_encode
(
$Month_statistics
));
dump
(
$Month_statistics
);
echo
strtotime
(
'2018-11-15 10:15:30'
);
...
...
请
注册
或
登录
后发表评论