我正在尝试很多方法,但后来我被卡住了一半。
假设今天创建了订单。我需要显示下一个重复订单何时发生。所以我在 2012 年 6 月 13 日创建了订单。然后我将计划设置为双月定期订单,每个月的第一天。如何计算下一个重复订单何时发生?答案是 8 月 1 日。
如果有人可以概述一种方法,那将非常有用,它不必是代码。这是我目前所拥有的......
// first, get starting date
$start_date_month = date('m', strtotime($start_date));
// get this year
$this_year = date('Y');
// if this month is december, next month is january
$this_month = date('m', $timestamp_month);
if($this_month == 12){
$next_month = 1;
// if this month is not december add 1 to get next month
}else{
$next_month = $this_month + 1;
}
// get array of months where recurring orders will happen
$months = array();
for ($i=1; $i<=6; $i++) {
$add_month = $start_date_month+(2*$i); // 2, 4, 6, 8, 10, 12
if($add_month == 13){$add_month = 1;$year = $this_year+1;}
elseif($add_month == 14){$add_month = 2;$year = $this_year+1;}
elseif($add_month == 15){$add_month = 3;$year = $this_year+1;}
elseif($add_month == 16){$add_month = 4;$year = $this_year+1;}
elseif($add_month == 17){$add_month = 5;$year = $this_year+1;}
elseif($add_month == 18){$add_month = 6;$year = $this_year+1;}
elseif($add_month == 19){$add_month = 7;$year = $this_year+1;}
elseif($add_month == 20){$add_month = 8;$year = $this_year+1;}
else{$year = $this_year;}
echo $what_day.'-'.$add_month.'-'.$year.'<br />';
$months[] = $add_month;
}
echo '<pre>';
print_r($months);
echo '</pre>';
我不想简单地找出两个月后的日期。假设在 6 月 1 日创建订单。下一个定期订单是 8 月 1 日。那么现在假设今天是 9 月 1 日,但下一个定期订单是 10 月 1 日。看到我的困境了吗?