您好,登錄后才能下訂單哦!
/**
* 獲取兩個(gè)時(shí)間之間的日期
* @param $startDate
* @param $endDate
* @return array
*/
function getDatesBetweenTwoDays($startDate, $endDate)
{
$dates = [];
if (strtotime($startDate) > strtotime($endDate)) {
// 如果開(kāi)始日期大于結(jié)束日期,直接return 防止下面的循環(huán)出現(xiàn)死循環(huán)
return $dates;
} elseif ($startDate == $endDate) {
// 開(kāi)始日期與結(jié)束日期是同一天時(shí)
array_push($dates, $startDate);
return $dates;
} else {
array_push($dates, $startDate);
$currentDate = $startDate;
do {
$nextDate = date('Y-m-d', strtotime($currentDate . ' +1 days'));
array_push($dates, $nextDate);
$currentDate = $nextDate;
} while ($endDate != $currentDate);
return $dates;
}
}
參考:
https://blog.csdn.net/qq_28766327/article/details/79237575
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。