tzzz


ISO 8601 week number to date (timestamp) in PHP
August 14, 2006, 12:21 pm
Filed under: ISO8601, PHP, date, weekNumber

How do I convert an ISO 8601 week number to a timestamp or date?

Here’s a handy function for PHP that returns an array with seven timestamps, one for each day in week $weekNumber.

function getDaysInWeek ($weekNumber, $year) {
  // Count from '0104' because January 4th is always in week 1
  // (according to ISO 8601).
  $time = strtotime($year . '0104 +' . ($weekNumber - 1)
                    . ' weeks');
  // Get the time of the first day of the week
  $mondayTime = strtotime('-' . (date('w', $time) - 1) . ' days',
                          $time);
  // Get the times of days 0 -> 6
  $dayTimes = array ();
  for ($i = 0; $i < 7; ++$i) {
    $dayTimes[] = strtotime('+' . $i . ' days', $mondayTime);
  }
  // Return timestamps for mon-sun.
  return $dayTimes;
}

A simple way to test if it works:

$dayTimes = getDaysInWeek(33, 2006);
foreach ($dayTimes as $dayTime) {
  echo (strftime('%a %Y%m%d', $dayTime) . "n");
}

I had some trouble with making this work on my local computer. A good guess is that this has something to do with my locales, so beware! Run the test on the computer that hosts your application before you rely on it.


47 Comments so far
Leave a comment

Thank you, just what I needed, good tip about using strtotime to make these calculations!

I had to change the string used by strtotime to “4 January 2006 + 33 weeks” to make it work for me, probably locale settings.

Comment by Rune

perfect. thank you very much.

Comment by safeen

This always works:

function getFirstDayOfWeek($year, $weeknr)
{
$offset = date(‘w’, mktime(0,0,0,1,1,$year));
$offset = ($offset

Comment by Patrick Nijs

Again, in valid HTML:

function getFirstDayOfWeek($year, $weeknr)
{
$offset = date(‘w’, mktime(0,0,0,1,1,$year));
$offset = ($offset < 5) ? 1-$offset : 8-$offset;
$monday = mktime(0,0,0,1,1+$offset,$year);

return strtotime(‘+’ . ($weeknr – 1) . ‘ weeks’, $monday);
}

Comment by Patrick Nijs

Brilliant!

Comment by Dandelion

What does Rune mean by “I had to change the string used by strtotime to “4 January 2006 + 33 weeks” to make it work for me, probably locale settings.”

Comment by Rajan

That instead of using:

$time = strtotime($year . '0104 +' . ($weekNumber - 1) . ' weeks');

He had to use:

$time = strtotime('4 January ' . $year . ' +' . ($weekNumber - 1) . ' weeks');

Comment by tzzz

@Patrick Nijs… This is just what I was looking for! Thanks

Comment by batfastad

Here is another way to do it:
$date = date(‘m/d/Y’, strtotime(‘1 january 2007 + 33 weeks’));

Comment by John

Also,
$date = date(‘m/d/Y’, strtotime(‘2007W011′));

Where:
2007 = year
W01 = week one (W04 = week 4, etc)
1 = day of week to get date for (in this case, monday)

Comment by John

or u can try this function

function getDaysInWeek ($weekNumber, $year)
{
$date_object = date_create( “0 January $year” );
$date_object->modify( “+$weekNumber weeks” );
$dayTimes = $date_object->format( “d-m-Y” );
$date_object->modify( “-6 days” );
$dayTimes = $date_object->format( “d-m-Y” ).” – “.$dayTimes;
return $dayTimes;
}

Comment by gigel

KISS solution based on Johns entry:

/**
* Get the start of a given week (in this case monday is first day = W)
*
* @param integer $iWeekNumber
* @param string $sFormat
* @param integer $iYear
* @return mixed Datetime or UNIX time depending on format
*/
public static function getDatetimeWeekStart( $iWeekNumber, $iYear = null, $sFormat = ‘d\.m\.Y’)
{
if ( is_null($iYear) ) $iYear = date(“Y”);
if ( $iWeekNumber < 10 ) $iWeekNumber = “0″.$iWeekNumber;
$iTime = strtotime($iYear.’W’.$iWeekNumber);
return date($sFormat, $iTime);
}

Example this week:
print getDatetimeWeekStart(date(‘W’));

Example week 10 in 2006:
print getDatetimeWeekStart(10, 2006);

Example week 52 in 2009 in unixtime:
print getDatetimeWeekStart(52, 2009, ‘U’);

Best regards
Jesper HorsMark

Comment by HorsMark

[...]   return $dayTimes; }  aus: ISO 8601 week number to date (timestamp) in PHP Er gibt dir einen Array mit 7 Eintrgen zurck, fr jeden Tag einen. Davon brauchst du eben nur [...]

Pingback by Erster Tag einer Woche - PHP @ tutorials.de: Forum, Tutorial, Anleitung, Schulung & Hilfe

Patrick Nijs’s code does not work every time. For example, year 2008, week number 1
Week 1 starts in last year, 31.12.2007 to be exact. Patrick’s code does not understand that and says that first day of the first week is 1.1.2008.

Comment by Jasmo

Very useful for me, just what i wanted.
Thanks!

Comment by centerax

[...] So, i searched on google and found this as first result: http://tzzz.wordpress.com/2006/08/14/8/ [...]

Pingback by Get timestamps out of week no. and year. | Rene's PHP Blog

Thanks for the code! It was very usefull.

I posted someting on my blog to show you how i used it. And a backlink to this blogpost!

Comment by Rene

I think he made mistakes in finding the $mondayTime
You can test that with week 52 year 2008 and week 1 year 2009.

This is the revised code:

function getDaysInWeek ($weekNumber, $year) {
// Count from ‘0104′ because January 4th is always in week 1
// (according to ISO 8601).
$time = strtotime($year . ‘0104 +’ . ($weekNumber – 1)
. ‘ weeks’);
// Get the time of the first day of the week
$diff = (date(‘w’, $time) – 1 >= 0) ? (date(‘w’, $time) – 1) : 6;
$mondayTime = strtotime(‘-’ . $diff . ‘ days’, $time);
// Get the times of days 0 -> 6
$dayTimes = array ();
for ($i = 0; $i < 7; ++$i) {
$dayTimes[] = strtotime(‘+’ . $i . ‘ days’, $mondayTime);
}
// Return timestamps for mon-sun.
return $dayTimes;
}

Comment by nkonx

Also for week 53 year 2009 and week 1 year 2010…

Comment by nkonx

Here is a function for finding the number of weeks in a year:

function datetime_nweek_in_year($year) {
// Count from ‘1228′ because December 28th is always in last week
// (according to ISO 8601).
$n = intval(date(‘W’, strtotime($year.’1228′)));
return $n;
}

Comment by nkonx

function week2date($year, $week, $weekday=7) {
$time = mktime(0, 0, 0, 1, (4 + ($week-1)*7), $year);
$this_weekday = date(“N”, $time);
return mktime(0, 0, 0, 1, (4 + ($week-1) * 7 + ($weekday – $this_weekday)), $year);
}

Comment by Ramsed

I would be so happy if anyone could help me.

This scripts belives that there’s 53 weeks in year 2008

it’s only 52 ofc. så week 1 in 2009 is week 2 IRL.
and week 2 is week 3 and so on. Why does this occur? i’ve tryed to solve it. but i cant :’(

PLEASE!! COntact me @ patrik@quick-bemanning.se
I would be so greatfull for any solution!

Comment by Patrik

Loved this, thans a lot :D .

Comment by Severo

Fixed the years with 29 february
if (($year -1)/ 4 == intval(($year -1)/ 4)) $time = $time – 172800;

Comment by Juan Guzman

Leap year fix in previous comment unfortunately doesn’t really work in my script … I did, however, manage to fix the problem temporarily by writing ‘1 January’ instead of ‘4 January’. Will be re-set again for 2010 and following years. thx!

Comment by ahhoi

I’ve try this script and for unfortunately concidence, this year the 20090104 is sunday.
So the script fail to calculate $mondayTime = strtotime(‘– 1 days’, $time); don’t work!
This is the fix
if ((date(“w”, $time) == 0))
{
$mondayTime = strtotime(“-6 days”, $time);
}
else
{
$mondayTime = strtotime(“-” . (date(“w”, $time) – 1) . ” days”, $time);
}

Comment by Alessandro bellisai

John’s solutions (and thus HorsMark’s KISS one) won’t work because
1) in the first case it won’t be the Monday of the given week;
2) the second case needs ISO weeknumber year for the input not the usual Gregorian year (which is the case).

Comment by Janis

I think nobody noticed one mistake in the code…

$mondayTime = strtotime(‘-’ . (date(‘w’, $time) – 1) . ‘ days’, $time);

Which is totally wrong, according to PHP.net. If we handle weeks in ISO 8601 format, we have to do the same, according to days, arn’t we?

We have to use date(‘N’) to handle days in ISO format, instead of date(‘w’)…

So it should be:

$mondayTime = strtotime(‘-’ . (date(‘N’, $time) – 1) . ‘ days’, $time);

Comment by DjZoNe

Цюрих – культурный центр ШвейцарииПредставляем вашему вниманию Цюрих – самый крупный экономический и культурный центр Швейцарии, и в тоже время, благодаря исключительному единению местоположения и архитектуры, один из самых замечательных городов Европы.

Comment by Адам

Интересные автомобильные новости про элитные внедорожники из Европы и родстеры Audi, актуальные статьи и заметки про купе Mercedes и Porshe. Широкий выбор информации про автотюнинг, седаны Cadillac и cпорткары Lamborghini.

Comment by Захария

Студия оптимизации SEO-Магия: Оптимизация сайтов, Продвижение сайтов, Написание текстов статей, Аудит сайтов, Регистрация в каталогах, SEO-консультации, SEO-копирайтинг, Мониторинг позиций, а также поддержка сайтов!

Comment by Антон

Эстетик-клубСалон красоты “Эстетик-клуб” – это полный спектр парикмахерских услуг, эксклюзивная косметология, салон массажных техник, спа-салон, коррекция фигуры, маникюр и педикюр, салон для загара, салон будущих мам, мужской салон. Наш телефон (812) 590 85 66. Рады видеть вас ежедневно с 10 до 21.

Comment by Марк

Cmyguo – раскрутка сайтов бесплатно: раскрутка, реклама сайтовОдна из наших основных специализаций – раскрутка сайта бесплатно, раскрутка, оптимизация сайтов, реклама сайтов, продвижение сайтов

Comment by Юрий

Drevstroy: колун, тачка садовая, кувалда, лампа керосиноваяМы предлагаем максимальные скидки на товары собственного производства – У нас есть: тачка садовая, веник сорго, лампа керосиновая

Comment by Юрий

Экомстат: мешок для мусора, бигудиМы работаем на российском рынке более четырнадцати лет. В нашем арсенале: вешалки, полиэтиленовая пленка, мешки для мусора и многое другое.

Comment by Юрий

MБ-Торг: люминесцентная лампа, дрл, лампы накаливания, прожекторыМы предлагаем нашим клиентам широкий спектр изделий: светильники ЛПО, светильники РКУ, ЖКУ, лампы накаливания

Comment by Юрий

Наша красотка – русская красавица.
Все для нас, дорогие женщины!

Comment by Наша красотка

Game-Fox.Ru: Скачать игры PC, шаблоны, патчи, иконки, шапки, трейнеры, быстро, бесплатно и без регистрации!

Comment by Антон

Купить светильники бра: Vian 7100/AP2 CP, Vian 4900/AP1, Vian 5900/AP1 CP, Sylcom 202/A2, Baga 1121, а также потолочные светильники: Bolero Pl75, Baga 2182, Queen, Pascale PL, Elysee, Faustig 71045, BRS, Faustig 70906, Emme Pi Light 8020, Busato 003-16C.

Comment by Евгений

Купить светильники бра: Vian 7100/AP2 CP, Vian 4900/AP1, Vian 5900/AP1 CP, Sylcom 202/A2, Baga 1121, а также потолочные светильники: Bolero Pl75, Baga 2182, Queen, Faustig 71045, Elysee, Pascale PL, BRS, Emme Pi Light 8020, Faustig 70906, Busato 003-16C.

Comment by Евгений

Купить светильники бра: Vian 7100/AP2 CP, Vian 4900/AP1, Vian 5900/AP1 CP, Sylcom 202/A2, Baga 1121, а также потолочные светильники: Baga 2182, Bolero Pl75, Queen, Pascale PL, BRS, Elysee, Faustig 71045, Faustig 70906, Emme Pi Light 8020, Busato 003-16C.

Comment by Евгений

Сайт компании ООО “Сладкая жизнь”, одной из самых крупнейших компаний, специализирующихся на производстве пирожных. Компания выпускает больше 50 видов тортовых изделий , выделяющихся по своему вкусовым качествамиразмерами. Особенно стоит отметить разнообразие и изысканность внешнего оформления тортов.

Comment by Азалия

Заинтересовала ваша статья. Если Вы не против могу дать вам пару советов. Немного украсте дизайн Вашего сайта, а также проведите seo продвижение, чтоб больше посетителей было. Если заинтересовало поможем трафиком

Comment by seowqa

Светильники распродажа магазин, Москва. Люстры торшеры подвесы.Люстры в стиле Tiffany магазин, Москва. Бра торшеры лампы подвесы люстры. Светодизайн. Кухонные лампы.

Comment by Евдоким

Светильники уличные. Бра люстры продажа, магазин света в Москве.Где купить люстры, лампы, торшеры, светильники. Купить настенные лампы светильники, настенно-потолочные светильники можно здесь. Светильники напольные декоративные.

Comment by Михаил

Фильмы онлайн: мелодрамы, трейлеры, бесплатно.Скачать фильмы: мелодрамы, фентези, драмы, фантастика, приключения, ужасы, боевики, трейлеры, мультфильмы, комедии, триллеры, документальные фильмы.

Comment by Антон

На сайте Вы отыщите огромное количество красивейших обоев для десктопа вашего компьютера. Тысячи обоев ждут, когда Вы скачаете их и разместите на Ваш рабочий стол. Будьте уверенны они отдадут Вам замечательно настроение и скрасят будни перед компьютером. Заходите, качайте, размещайте, наслаждайтесь.

Comment by Элла




Leave a comment
Line and paragraph breaks automatic, e-mail address never displayed, HTML allowed: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <pre> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>