현재 날짜가 위치한 주(월)의 시작 날짜와 종료 날짜를 가져오는 PHP 코드입니다.
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
풀어 주다: 2016-07-25 08:58:31
-
-
// 获取指定日期所在星期的开始时间与结束时间 - //整理 程序员之家
- //at 2013-6-18
- function getWeekRange($date){
- $ret=array();
- $timestamp=strtotime($date);
- $w=strftime('%u',$timestamp);
- $ret['sdate']=date('Y-m-d 00:00:00',$timestamp-($w-1)*86400);
- $ret['edate']=date('Y-m-d 23:59:59',$timestamp (7-$w)*86400);
- return $ret;
- }
// 获取指定日期所在月的开始日期与结束日期
- function getMonthRange($date){
- $ret=array();
- $timestamp=strtotime($date);
- $mdays=date('t',$timestamp);
- $ret['sdate']=date('Y-m-1 00:00:00',$timestamp);
- $ret['edate']=date('Y-m-'.$mdays.' 23:59:59',$timestamp);
- return $ret;
- }
// 以上两个函数的应用
- function getFilter($n){
- $ret=array();
- switch($n){
- case 1:// 昨天
- $ret['sdate']=date('Y-m-d 00:00:00',strtotime('-1 day'));
- $ret['edate']=date('Y-m-d 23:59:59',strtotime('-1 day'));
- break;
- case 2://本星期
- $ret=getWeekRange(date('Y-m-d'));
- break;
- case 3://上一个星期
- $strDate=date('Y-m-d',strtotime('-1 week'));
- $ret=getWeekRange($strDate);
- break;
- case 4: //上上星期
- $strDate=date('Y-m-d',strtotime('-2 week'));
- $ret=getWeekRange($strDate);
- break;
- case 5: //本月
- $ret=getMonthRange(date('Y-m-d'));
- break;
- case 6://上月
- $strDate=date('Y-m-d',strtotime('-1 month'));
- $ret=getMonthRange($strDate);
- break;
- }
- return $ret;
- }
- ?>
-
复制代码
|
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31