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

如何找到两个指定日期之间的日期?,第1张

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

我很确定这已经回答了四千万次,但是无论如何:

$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' );}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5602485.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存