Given a week number, e.g. date -u +%W, how do you calculate the days in that week starting from Monday?
Example rfc-3339 output for week 40:
2008-10-06
2008-10-07
2008-10-08
2008-10-09
2008-10-10
2008-10-11
2008-10-12
|
2
|
|
|
|
|
|
PHP
Below post was because I was an idiot who didn't read the question properly, but will get the dates in a week starting from Monday, given the date, not the week number.. In PHP, adapted from this post on the PHP date manual page:
Output from
|
||||||||||
|
|
|
This calculation varies largely depending on where you live. For example, in Europe we start the week with a Monday, in US Sunday is the first day of the week. In UK week 1 is on Jan 1, others countries start week 1 on the week containing the first Thursday of the year. You can find more general information at http://en.wikipedia.org/wiki/Week#Week_number |
||
|
|
|
|
If you've got Zend Framework you can use the Zend_Date class to do this:
|
||
|
|
|
|
i found a problem with this solution. had to zero pad the weeknumber else was breaking. my solution looks like this now.. $week_number = 40; $year = 2008; for($day=1; $day<=7; $day++) { echo date('m/d/Y', strtotime($year."W".str_pad($week_number,2,'0',STR_PAD_LEFT).$day))."\n"; } |
||
|
|
|
|
this page has information which may be helpful. It includes example code in 'C' |
||
|
|
|
|
This function will give the timestamps of days of the week in which $date is found. If $date isn't given, it assumes "now." If you prefer readable dates to timestamps, pass a date format into the second parameter. If you don't start your week on Monday (lucky), pass in a different day for the third parameter.
So week_dates() should return something like...
|
||
|
|
|
|
For those looking for the days of the week given the week number (1-52) Starting from a sunday then here is my little work around. Takes into account checking the week is in the right range and pads the values 1-9 to keep it all working.
|
||
|
|
|
hi !, any chance to have the same in AS3 ? I came from Python programming where functions in Date class are very rich, so i have some problem in Flex/as3 : here where i go : I search a way (fonction or class or method) to get the seven day for a weeknumber. For example, myfunction(34) will return : 2009-08-17 2009-08-18 2009-08-19 2009-08-20 2009-08-21 2009-08-22 2009-08-23 any chance that somebody always did that ? Thank you for help or read me ! |
||
|
|