기본카테고리

[PHP]그 달의 마지막 날짜 구하는 방법

DevReff 2010. 11. 19. 12:49
728x90
SMALL

그 달의 1일에서 다음달 1일로 이동한 후 1일을 빼면 마지막 날짜가 나온다.

 

예1) 현재의 날짜의 해당월

$last_day = date("d", strtotime('next month', strtotime(date("Y-m-01")))-1);

 

예2) 임의로 주어진 년월

$year = $_POST['year'];

$month = $_POST['month'];

 

if($month < 10)$month = "0".$month;

 

$last_day = date("d", strtotime('next month', strtotime(date($year."-".$month."-01")))-1);