해당 주(월)의 시작일과 마지막일자 구하는 방법
//넘어오는 변수값이 없으면 오늘 기준으로 값 설정 if(!$thisY) $thisY = date("Y"); if(!$thisM) $thisM = date("m"); if(!$thisD) $thisD = date("d"); $thisW = date("w",mktime(12,12,12,$thisM,$thisD,$thisY)); // 0(일요일)에서 6(토요일)// 해당 주차의 시작 날짜 (일요일)..timestamp $thisStartW = mktime(0,0,0,$thisM,$thisD-$thisW,$thisY); // 해당 주차의 마지막 날짜 (토요일)..timestamp $thisEndW = mktime(23,59,59,$thisM,$thisD+(6-$thisW),$thisY);// 해당 월의 시작 ..
2019.02.18