개발자의 끄적끄적

[php] php 현재 주의 시작 월요일과 종료 일요일 구하는 방법 본문

개발/php

[php] php 현재 주의 시작 월요일과 종료 일요일 구하는 방법

효벨 2021. 11. 4. 03:00
728x90
반응형

[php] php 현재 주의 시작 월요일과 종료 일요일 구하는 방법

 

 

php 에서

 

현자 날짜를 기준으로

 

월요일과 일요일의 날짜를 구하고 싶은 경우가 있습니다.

 

그럴때는 아래와 같이

 

start_dt 와 end_dt 를 구하면 됩니다.

 

$today = date('Y-m-d');
$day_of_the_week = (-1) * date('w');
$first_day_of_the_week = (-1) * (date('w')-1);
$last_day_of_the_week = 7 + $day_of_the_week;
$start_dt = date('Y-m-d', strtotime($today . " " . $first_day_of_the_week . "days"));
$end_dt = date('Y-m-d', strtotime($today . " " . $last_day_of_the_week . "days"));

 

위에서 구한 

 

start_dt 와 end_dt 를 출력하면,

 

현재 날짜를 기준으로 현재주의 월요일과 일요일의 날짜가 나오게 됩니다.

 

참고들 하세요!

반응형
Comments