码迷,mamicode.com
首页 > Web开发 > 详细

PHP 返回近7天 本月 上月日期

时间:2016-03-15 18:50:52      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:

 1 <?php
 2 /**
 3  * 返回近7天,本月,上月数据
 4  * 不计当天(展示后台数据专用)
 5  */
 6 function weekMonthLastMonth($search_date = ‘week‘) {
 7 
 8     switch($search_date)
 9     {
10         case ‘week‘ : // 近7天
11             $start_date = date ("Y-m-d", strtotime("-7 days"));
12             $end_date = date ("Y-m-d", strtotime("-1 days"));
13             break;
14         case ‘month‘ : // 本月
15             $start_date = date ("Y-m-01", strtotime("-1 days"));
16             $end_date = date ("Y-m-d", strtotime("-1 days"));
17             break;
18         case ‘last_month‘ : // 上月
19             $search_time = strtotime ("-1 month");
20             $start_date = date ("Y-m-01", $search_time);
21             $end_date = date (‘Y-m-d‘, strtotime("$start_date +1 month -1 day"));
22             break;
23     }
24     return array($start_date, $end_date);
25 }
26 
27 echo print_r(weekMonthLastMonth(‘week‘), true);
28 echo print_r(weekMonthLastMonth(‘month‘), true);
29 echo print_r(weekMonthLastMonth(‘last_month‘), true);

 

PHP 返回近7天 本月 上月日期

标签:

原文地址:http://www.cnblogs.com/cloudshadow/p/5280431.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!