作者 董瑞恩
1 个管道 的构建 通过 耗费 0 秒

order

@@ -27,12 +27,12 @@ class AdminStatisticsController extends AdminBaseController{ @@ -27,12 +27,12 @@ class AdminStatisticsController extends AdminBaseController{
27 27
28 public function index(){ 28 public function index(){
29 29
30 - $week = strtotime("last Monday");//把周日当做是一个礼拜的开始,如果想把周一当做是一个礼拜的开始,就把Sunday换成Mondy  
31 - echo date('Y-m-d H:i:s',$week).'</br>';  
32 -  
33 $week1 = strtotime("Monday");//把周日当做是一个礼拜的开始,如果想把周一当做是一个礼拜的开始,就把Sunday换成Mondy 30 $week1 = strtotime("Monday");//把周日当做是一个礼拜的开始,如果想把周一当做是一个礼拜的开始,就把Sunday换成Mondy
34 echo date('Y-m-d H:i:s',$week1); 31 echo date('Y-m-d H:i:s',$week1);
35 32
  33 + $week = strtotime(date('Ymd',strtotime('-1 week')));
  34 + echo date('Y-m-d H:i:s',$week);
  35 +
36 return $this->fetch(); 36 return $this->fetch();
37 } 37 }
38 38