매달에 마지막 날짜를 구할수 있는 방법 function get_last_day($month, $year) { return date('d', mktime(0, 0, 0, $month, 0, $year)); } PHP 2010.08.26