그 달의 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 $last_day = date("d", strtotime('next month', strtotime(date($year."-".$month."-01")))-1);