在PHP 中檢索兩個給定日期之間的所有日期
確定指定範圍內的日期順序是編程中的常見任務。 PHP 提供了多種方法來實現此目的,包括自訂函數和內建功能,例如 DatePeriod。
自訂函數
可以建立一個簡單的自訂函數來產生兩個提供的輸入之間的日期陣列:
function getDatesFromRange($startDate, $endDate) { $dates = array(); $currentDate = $startDate; while ($currentDate <= $endDate) { $dates[] = $currentDate; $currentDate = date('Y-m-d', strtotime('+1 day', strtotime($currentDate))); } return $dates; } $dates = getDatesFromRange('2010-10-01', '2010-10-05'); // Output: Array('2010-10-01', '2010-10-02', '2010-10-03', '2010-10-04', '2010-10-05')
DatePeriod類別
PHP 的DatePeriod類別提供了更通用的解決方案:
$period = new DatePeriod( new DateTime('2010-10-01'), new DateInterval('P1D'), new DateTime('2010-10-05') ); $dates = array(); foreach ($period as $key => $value) { $dates[] = $value->format('Y-m-d'); } // Output: Array('2010-10-01', '2010-10-02', '2010-10-03', '2010-10-04', '2010-10-05')
DatePeriod 類別提供了自訂日期間隔的靈活性,並允許輕鬆迭代生成的日期。
以上是如何在 PHP 中檢索兩個給定日期之間的所有日期?的詳細內容。更多資訊請關注PHP中文網其他相關文章!