截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. namespace app\common\utils;
  3. class Time
  4. {
  5. /**
  6. * 获取常用时间段
  7. * 昨天、今天、最近7天、最近30天
  8. */
  9. public static function getTime(){
  10. $yesterday_date = date('Y-m-d', strtotime('-1 day'));
  11. $yesterday_start = $yesterday_date . ' 00:00:00';
  12. $yesterday_end = $yesterday_date . ' 23:59:59';
  13. $yesterday = [$yesterday_start, $yesterday_end];
  14. $today_date = date('Y-m-d', time());
  15. $today_start = $today_date.' 00:00:00';
  16. $today_end = $today_date.' 23:59:59';
  17. $today = [$today_start, $today_end];
  18. $ago7_date = date('Y-m-d', strtotime('-6 day'));
  19. $ago7_start = $ago7_date . ' 00:00:00';
  20. $ago7 = [$ago7_start, $today_end];
  21. $ago30_date = date('Y-m-d', strtotime('-29 day'));
  22. $ago30_start = $ago30_date . ' 00:00:00';
  23. $ago30 = [$ago30_start, $today_end];
  24. $time = [
  25. 'yesterday' => $yesterday,
  26. 'today' => $today,
  27. 'days_ago7' => $ago7,
  28. 'days_ago30' => $ago30,
  29. ];
  30. return $time;
  31. }
  32. }