Getting Dates From Week Numbers in PHP
Using DateTime::setISODate
I found that the DateTime extension has a method setISODate() which accepts the year and week number, and makes a date you can then use as normal.$week_start = new DateTime(); $week_start->setISODate($year,$week_no); echo $week_start->format('d-M-Y');
You can also do this the other way around; if you have a date in PHP, there's the 'W' flag for date() which will return you the week number - very handy!
http://www.lornajane.net/posts/2011/getting-dates-from-week-numbers-in-php