获取指定范围内的日期
当出现两个特定日期时,例如 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中文网其他相关文章!