开发者

MySQL/PHP that determines which week a day resides on for calendar use

I'm trying to figure out the best way to do the following:

If a user chooses a certain day, say June 21, 2010 we will repeat an event every 3rd monday of every month, but if they choose June 28, 2010 the event will repeat every last monday of every month. This is how google calendar does it, and I'm trying to repeat that functionality.

So basically I see it working something like this: Given a date, get the week it exists in, and the day it is on. (1st week, 2nd week, 3rd week, 4t开发者_运维百科h week, and last week.) Obviously sometimes 4th week will be the last week, and if that is the case I'd like to default to last week.

so in psuedocode:

$repeatweek = getweeknumber($date);
$repeatday = date('l', strtotime($date));


$todaysweek = getweeknumber($todaysdate);
$todayday =  date('l', strtotime($todaysdate));

if($todayday == $repeatday && $repeatweek == $todaysweek){
    echo "This is the day";
}

So the trick I guess is to properly define the getweeknumber() function, which I'm having a heck of time with. Especially determining first and last weeks.


Take a look at the DatePeriod class.

Example:

<?php
$start = new DateTime("June 21, 2010");
$end = new DateTime("December 31, 2010");

$interval = DateInterval::createFromDateString('fourth monday of next month');
$period = new DatePeriod($start, $interval, $end, DatePeriod::EXCLUDE_START_DATE);

foreach ($period as $p) {
    echo $p->format("Y-m-d"), "\n";
}

gives

2010-07-26
2010-08-23
2010-09-27
2010-10-25
2010-11-22
2010-12-27
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜