...
|
...
|
@@ -28,7 +28,7 @@ class AdminStatisticsController extends AdminBaseController{ |
|
|
public function index(){
|
|
|
|
|
|
$week0 = strtotime(date('Ymd',strtotime('-0 week')));//把周日当做是一个礼拜的开始,如果想把周一当做是一个礼拜的开始,就把Sunday换成Mondy
|
|
|
echo date('Y-m-d H:i:s',$week0)."</br>";
|
|
|
echo $week0."</br>";
|
|
|
|
|
|
$week1 = strtotime(date('Ymd',strtotime('-1 week')));
|
|
|
echo date('Y-m-d H:i:s',$week1);
|
...
|
...
|
|