取得指定範圍內的日期
當出現兩個特定日期時,例如20-4-2010 和22-4-2010 ,一個常見的程式設計任務是以簡潔的格式檢索中間日期,例如20、21 和22。為了實現這一點,我們可以利用 PHP 中的各種方法。
解決方案 1:循環使用 strtotime 和 date
這涉及使用 strtotime() 函數將日期轉換為時間戳,然後使用 for 循環迭代該範圍。 date() 函數用於將時間戳格式化為日期:
<code class="php">$start = strtotime('20-04-2010'); $end = strtotime('22-04-2010'); for ($current = $start; $current <= $end; $current += 86400) { echo date('d', $current); }
解2:使用DateInterval 和DateTime 循環(PHP 5.3 )
PHP 5.3而稍後使用DateInterval 和DateTime 類別提供了更簡潔優雅的解決方案:
<code class="php">$period = new DatePeriod( new DateTime('20-04-2010'), DateInterval::createFromDateString('+1 day'), new DateTime('23-04-2010') ); foreach ($period as $dt) { echo $dt->format('d'); }</code>
以上是如何在 PHP 中檢索指定範圍內的日期?的詳細內容。更多資訊請關注PHP中文網其他相關文章!