{@ $y = $info->setyear; $m =$info->setmonth; $d="01"; $nextMonth= date("m",strtotime($y."-".$m."-".$d."+1 month" )); $nextYear= date("Y",strtotime($y."-".$m."-".$d."+1 month" )); $prevMonth= date("m",strtotime($y."-".$m."-".$d."-1 month" )); $prevYear= date("Y",strtotime($y."-".$m."-".$d."-1 month" )); $thisY=date("Y"); $thisM =date("m"); $thisD =date("d"); $firstday = mktime(0,0,0,$m,1,$y);//첫날 time $startday = date('w',$firstday); /// 그달의 첫날 요일 $endday = date('t',$firstday); /// 그 달에 마지막날 $day_e = ""; $p1=(int)$prevYear.$prevMonth; $p2=(int)$thisY.$thisM; $todate = date("Y-m-d", time()); $daysToWeek=array('일','월','화','수','목','금','토'); }