PHP:获得未来13个日期从日期?(PHP: get next 13 dates from date

2019-09-02 01:38发布

我试图让一个日期加上接下来的13日的阵列,以获得从给定之日起14天的日程安排。

这里是我的功能:

$time = strtotime($s_row['schedule_start_date']); // 20091030
$day = 60*60*24;
for($i = 0; $i<14; $i++)
{
    $the_time = $time+($day*$i);
    $date = date('Y-m-d',$the_time);
    array_push($dates,$date);
}

但似乎月份时切换到可重复的日期..

这就是我得到:

2009-10-30 | 2009-10-31 | 2009-11-01 | 2009-11-01 | 2009-11-02 | 2009-11-03 | 2009-11-04 | 2009-11-05 | 2009- 11-06 | 2009-11-07 | 2009-11-08 | 2009-11-09 | 2009-11-10 | 2009-11-11

注意2009-11-01重复。 我想不通为什么?

我究竟做错了什么?

谢谢!!

Answer 1:

我会用的strtotime

$start = strtotime($s_row['schedule_start_date']);
$dates=array();
for($i = 1; $i<=14; $i++)
{
    array_push($dates,date('Y-m-d', strtotime("+$i day", $start)));
}
print_r($dates);


Answer 2:

您,是因为同日夏令时开关 。 这不是安全添加24*60*60秒内找到第二天,因为2天在今年有他们更多/更少秒。 当您从夏季切换到冬季时间正在添加1个小时到一天。 因此,这将是25*60*60秒的那一天,这就是为什么它不是在你的代码转换。

你可以做你的计算mktime() 例如:

## calculate seconds from epoch start for tomorrow
$tomorrow_epoch = mktime(0, 0, 0, date("m"), date("d")+1, date("Y"));
## format result in the way you need
$tomorrow_date = date("M-d-Y", $tomorrow_epoch);

或完整版本的代码:

$dates = array();
$now_year = date("Y");
$now_month = date("m");
$now_day = date("d");
for($i = 0; $i < 14; $i++) {
    $next_day_epoch = mktime(0, 0, 0, $now_month, $now_day + $i, $now_year);
    array_push(
        $dates,
        date("Y-m-d", $next_day_epoch)
    );
}


Answer 3:

我建议是这样的:

for($i=1;$i<=14;$i++){
     echo("$i day(s) away: ".date("m/d/Y",strtotime("+$i days")));
}


文章来源: PHP: get next 13 dates from date?
标签: php date time php4