반응형
PHP의 Last Week, This Week 알아내기
[Last Week]
$previous_week = strtotime("-1 week +1 day");
$start_week = strtotime("last sunday midnight",$previous_week);
$end_week = strtotime("next saturday",$start_week);
$start_week = date("Y-m-d",$start_week);
$end_week = date("Y-m-d",$end_week);
echo $start_week.' '.$end_week;
[This Week]
$previous_week = strtotime("this week +1 day");
예: 오늘이 2017-06-16 이라면, 일~토요일까지의 날짜가 출력된다.
[결과]
2017-06-11 ~ 2017-06-17
출처: https://stackoverflow.com/questions/21644002/how-can-i-get-last-week-date-range-in-php
[ Last Sunday - 지난일요일로 변경하기 ]
strtotime('last Sunday', strtotime('09/01/2010'));
[예제]
echo date('m/d/Y', strtotime('last Sunday', strtotime('09/01/2010'))); // 결과 08/29/2010
반응형
'WEB언어 > PHP' 카테고리의 다른 글
(따옴표) Single쿼텐션 없애기 / 엔터 없애기 / GET방식 & 와 + 전송하기 (0) | 2017.10.13 |
---|---|
PHP mysql_real_escape_string사용하지 않는 방법 (0) | 2017.10.13 |
[PHP] addslashes(), stripslashes() 그리고, get_magic_quotes_gpc() (0) | 2017.07.19 |
날짜 포멧 yyyy-dd-mm을 dd/mm/yyyy 변환 (0) | 2017.06.24 |
PHP 5.x 에서 PHP 7으로 업그레이드시 작업 (0) | 2017.06.15 |
PHP 다음달 구하기 mktime(0,0,0,date("m")+1,15,date("Y"))) (2) | 2016.08.01 |
(PHP) HTML tag 제거 + 특정 HTML tag 허가(Allow) (0) | 2016.02.12 |
time — Return current Unix timestamp (0) | 2015.04.29 |
도움이 되셨다면 하트모양의 "♡ 공감"을 눌러주시면 큰 격려가 됩니다.
(로그인하지 않으셔도 가능)
(로그인하지 않으셔도 가능)