正在显示
1 个修改的文件
包含
2 行增加
和
2 行删除
@@ -27,8 +27,8 @@ class AdminStatisticsController extends AdminBaseController{ | @@ -27,8 +27,8 @@ class AdminStatisticsController extends AdminBaseController{ | ||
27 | 27 | ||
28 | public function index(){ | 28 | public function index(){ |
29 | 29 | ||
30 | - $week1 = strtotime("Monday");//把周日当做是一个礼拜的开始,如果想把周一当做是一个礼拜的开始,就把Sunday换成Mondy | ||
31 | - echo date('Y-m-d H:i:s',$week1); | 30 | + $week1 = strtotime(date('Ymd',strtotime('-0 week')));//把周日当做是一个礼拜的开始,如果想把周一当做是一个礼拜的开始,就把Sunday换成Mondy |
31 | + echo date('Y-m-d H:i:s',$week1)."</br>"; | ||
32 | 32 | ||
33 | $week = strtotime(date('Ymd',strtotime('-1 week'))); | 33 | $week = strtotime(date('Ymd',strtotime('-1 week'))); |
34 | echo date('Y-m-d H:i:s',$week); | 34 | echo date('Y-m-d H:i:s',$week); |
-
请 注册 或 登录 后发表评论