php – 如何找到两个指定日期之间的日期?

发布时间:2022-04-30 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了php – 如何找到两个指定日期之间的日期?脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
如果我有两个日期20-4-2010和22-4-2010
在两个文本框和
我想要的日期是这样的20,21,22.我该怎么做?
我很确定这已经回答了十几亿次,但无论如何:
$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);
}

10:00部分是为了代码由于夏令时而跳过或重复一天.

通过给出天数:

for($i = 0; $i <= 2; $i++) {
    echo date('d-m-Y',strtotime("20-04-2010 +$i days"));
}

PHP5.3

$PEriod = new DatePeriod(
    new DateTime('20-04-2010'),Dateinterval::createFromDatestring('+1 day'),new DateTime('23-04-2010') // or pass in just the no of days: 2
);

foreach ( $period as $dt ) {
  echo $dt->format( 'd-m-Y' );
}

脚本宝典总结

以上是脚本宝典为你收集整理的php – 如何找到两个指定日期之间的日期?全部内容,希望文章能够帮你解决php – 如何找到两个指定日期之间的日期?所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。