PHP的超时与日期循环

时间:2018-08-09 20:53:09

标签: php date for-loop timeout

我想获取一个时期内的日期数组。为此,我想到了一个for循环(似乎很简单...),但是即使运行日期为1个月,它也会超时。

这是我的php:

        $startdate = '2018-01-31';
        $recurring = '2';


        switch($recurring) {
            case '1':
                $period = '+1 day';
                break;
            case '2':
                $period = '+1 week';
                break;
            case '3':
                $period = '+1 month';
                break;
            case '4':
                $period = '+3 months';
                break;
            case '5':
                $perion = '+1 year';
                break;
            default:
                $period = null;
                break;
        }

        $dates = [];

        if($period !== null) {
            for($date = $startdate; $date < strtotime('+1 month', $startdate); strtotime($period, $date)) {
                $dates[] = $date;
            }
        }

        echo json_encode($dates);

1 个答案:

答案 0 :(得分:1)

在for循环的增量部分中将$date增加$date = strtotime($period, $date)可以防止其超时,但是还可以进行其他一些改进。

首先,我建议在循环之前计算您的结束日期,以免每次检查继续条件时都要进行额外的strtotime调用。

$end = strtotime("$startdate +1 month");

然后,在初始化部分设置$date = strtotime($startdate),否则您将获得日期字符串而不是时间戳作为$dates数组中的第一个值。

for ($date = strtotime($startdate); $date < $end; $date = strtotime($period, $date)) {
    $dates[] = $date;
}