检查有关startdate的第5次重复。在本月的特定工作日重复

时间:2017-07-19 09:19:20

标签: php date datetime

我有一个重复活动的脚本。 重复设置为:

重复" 每2个月的第二个星期二,停止在5个实例" (就像谷歌日历一样)。

我可以每2个月完成第二个星期二"使用以下脚本:

<?php
$pubDay = 19;
$pubMonth = 7;
$pubYear = 2017;
$repeatMonths = 2;

$newMonth = $pubMonth;
$newYear = $pubYear;

$raisedMonth = $pubMonth + $repeatMonths;
if ( $raisedMonth > 12 ) {
    $newMonth = ($raisedMonth) % 12; // off 12 at starts at 1
    $newYear = $pubYear + 1;
} else {
    $newMonth = $raisedMonth;
}

$occurenceInMonth = ceil($pubDay / 7); // determine the weekday occurence in the month (b.e. the "2nd thursday")
$dates = array();
foreach (getWeekDayDates($pubDow, $newYear, $newMonth) as $weekdaydate) {
    $dates[] = $weekdaydate->format("Y-m-d");
}
// we need the x occurence (-1)
$newPubDate = isset($dates[$occurenceInMonth -1]) ? $dates[$occurenceInMonth -1] . " " . $pubHour . ":" . $pubMin : "";

echo $newPubDate;

function getWeekDayDates($weekday, $y, $m) {
    return new DatePeriod(
        new DateTime("first " . $weekday . " of $y-$m"),
        DateInterval::createFromDateString('next ' . $weekday),
        new DateTime("next month $y-$m-01")
    );
}
?>

这就像一个魅力。

但是现在我需要检查它是第5个实例,从17-9-2016开始。 我的脚本现在是这样的:

// get the end date
$startdate = "2016-09-17";
$repeatMonths = 2;
$endTime = strtotime($startdate . " +" . ($repeatMonths * $reps) . " months");
if ( $endTime >= strtotime($newPubDate) ) {
    $doRepeat = true;
}

但这可能会出错!

例如,当重复在星期六4-7开始(startddate)时,它会在每个第一个星期天重复。 当最后一次重复的星期日是在这个月的6号。上面的脚本返回false,但它不应该。

如果是第5次出现,我怎么能以简单的方式检查?

1 个答案:

答案 0 :(得分:1)

我会创建一个数组,其中包含该月的下一个5“第二个周二的DateTime个对象”:

$startdate = new \DateTime('second tue of february 2017');

$dates = array();
$repetitions = 5;
for ($i=0; $i<$repetitions; $i++) {
    $dates[] = clone $date->modify('+1 month');
}

使用此数组应该很容易检查,是否已达到日期。