- 정보공유
[그누보드팁] 금주 날짜 구하기
그누보드 경우
$day_of_week = date('w'); $week_mon = date('Y-m-d', strtotime(G5_TIME_YMD." -".($day_of_week - 1)."days")); // 시작일 $week_sun = date('Y-m-d', strtotime(G5_TIME_YMD." +".(6 - $day_of_week)."days")); // 종료일
그누보드가 아닐경우
$date = date('Y-m-d', time()); $day_of_week = date('w'); $week_mon = date('Y-m-d', strtotime($date." -".($day_of_week - 1)."days")); // 시작일 $week_sun = date('Y-m-d', strtotime($date." +".(6 - $day_of_week)."days")); // 종료일