php 获取开始日期与结束日期之间所有日期
话不多说,源码奉上!
function getDateRange($startdate, $enddate) { $stime = strtotime($startdate); $etime = strtotime($enddate); $datearr = []; while ($stime <= $etime) { $datearr[] = date('Y-m-d', $stime);//得到dataarr的日期数组。 $stime = $stime + 86400; } return $datearr; } $dates=getDateRange('2016-1-1','2016-1-6'); print_r($dates);
本文来自博客园,作者:郭德纲又打人了嘿,转载请注明原文链接:https://www.cnblogs.com/blibli/p/9092653.html