码迷,mamicode.com
首页 > Web开发 > 详细

PHP获取指定范围内的日期

时间:2021-04-23 12:27:28      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:day   获取   strtotime   范围   turn   lan   rto   pre   date   

//php获取指定范围内的日期
function periodDate($startDate, $endDate)
{
    $startTime = strtotime($startDate);
    $endTime = strtotime($endDate);
    $arr = [];
    while ($startTime <= $endTime)
    {
        $arr[] = date(‘Y-m-d‘, $startTime);
        $startTime = strtotime(‘+1 day‘, $startTime);
    }
    return $arr;
}

#使用
$time = periodDate(‘1912-01-01‘,‘2031-12-31‘);

PHP获取指定范围内的日期

标签:day   获取   strtotime   范围   turn   lan   rto   pre   date   

原文地址:https://www.cnblogs.com/ljkltt/p/14692597.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!