월의 몇 주차를 어떻게 계산해야할지 찾아보았지만, 마땅한 표준은 존재하지 않았다. 하지만, 해당 년도의 첫 주 계산은 ISO 8601 표준에 정해져있다는 것을 알게되었다. ISO 8601 표준의 위키피디아 해당 항목을 보면 매 해의 첫주의 정의는 아래와 같이 설명될 수 있다고 한다,

  • the week with the year's first Thursday in it (the formal ISO definition),
  • the week with 4 January in it,
  • the first week with the majority (four or more) of its days in the starting year, and
  • the week starting with the Monday in the period 29 December – 4 January.

가장 간단한 설명은 1월 4일이 포함된 주가 첫주라고 보면 된다는 것이다. 년에 관한 것만 나와있어서 그다지 도움은 안됐지만, 한가지 또 알게 된 사실은 ISO 8601 표준에서 "주"는 월요일에서 시작해서 일요일로 끝나는 것으로 본다.

하지만, 달력에는 주로 일요일이 시작인 것처럼 나와있는 경우가 많아서 한주의 시작요일을 변경할 수 있도록 해서 한번 만들어봤다.

<?php
class DateTimeExtra extends DateTime
{
const DOW_MONDAY = 1;
const DOW_TUESDAY = 2;
const DOW_WEDNESDAY = 3;
const DOW_THURSDAY = 4;
const DOW_FRIDAY = 5;
const DOW_SATURDAY = 6;
const DOW_SUNDAY = 7;
public function getWeekOfMonth($startDayOfWeek = self::DOW_SUNDAY)
{
$baseday = $startDayOfWeek - 1;
$baseday = ($baseday <= 0) ? 7 : $baseday;
$firstdate = $this->getDateOfFirstDayOfWeek($baseday);
$remain = $this->format('d') - $firstdate->format('d');
if ($remain <= 0)
{
return 1;
}
return ceil($remain / 7) + 1;
}
public function getDateOfFirstDayOfWeek($dayofweek)
{
$firstDay = new DateTime($this->format('Y-m-01'), $this->getTimezone());
$onedayInterval = new DateInterval('P1D');
while ($firstDay->format('N') != $dayofweek)
{
$firstDay->add($onedayInterval);
}
return $firstDay;
}
}
?>


'Developing' 카테고리의 다른 글

PHP에서의 UTF-8 지원  (0) 2015.06.08
PHP 에러(Error)를 예외(Exception)로 변환하기  (0) 2015.01.30
PHP 에서 IE 구분  (0) 2015.01.19

+ Recent posts