在 PHP 中获取两个指定日期之间的日期
给定文本框中的两个日期(例如,“20-4-2010”和“ 22-4-2010”),目标是提取它们之间的日期并将其格式设置为“20,21,22”。
PHP 解决方案:
要实现此目的,请使用以下 PHP 代码:
<code class="php">$start = strtotime('20-04-2010 10:00'); $end = strtotime('22-04-2010 10:00'); for ($current = $start; $current <= $end; $current += 86400) { echo date('d-m-Y', $current); }
说明:
其他选项:
<code class="php">for ($i = 0; $i <= 2; $i++) { echo date('d-m-Y', strtotime("20-04-2010 +$i days")); }
<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-m-Y'); }</code>
以上是如何在 PHP 中提取两个日期之间的日期范围?的详细内容。更多信息请关注PHP中文网其他相关文章!