php strtotime下个月的第一天什么都没有

时间:2012-04-07 13:57:29

标签: php strtotime next

我一直在阅读有关strtotime和“下个月”问题的php中的问题。我想要做的是反对两个日期之间的月份。 例如,如果我有开始日期01.02.2012和停止日期07.04.2012我想得到返回值 - 3个月。如果开始日期为i.02.02.2012和07.04.2012,也将是3个月的结果。我没有计算确切的天数/月数,只是我在两个日期之间的几个月。使用一些奇怪的日期,mktime和strtotime使用它并不是什么大不了的事,但不幸的是,开始和停止日期可能会在两个不同的年份,所以

mktime(0,0,0,date('m')+1,1,date('Y');

不会起作用(我现在不是今年,如果它在开始和停止日期之间发生变化。我可以计算它,但这不是很好的解决方案)。完美的解决方案是使用:

$stat = Array('02.01.2012', '07.04.2012')
$cursor = strtotime($stat[0]);
$stop = strtotime($stat[1]);
$counter = 0;
    while ( $cursor < $stop ) {
   $cursor = strtotime("first day of next month", $cursor);
   echo $cursor . '<br>';
   $counter++;
   if ( $counter > 100) { break; } // safety break;
    }
    echo $counter . '<br>';

不幸的是,strtotime没有返回正确的值。如果我使用它返回空字符串。 任何想法如何获得下个月第一天的时间戳?

$stat = Array('02.01.2012', '01.04.2012');
$start = new DateTime( $stat[0] );
$stop = new DateTime( $stat[1] );
while ( $start->format( 'U') <= $stop->format( 'U' ) ) {
    $counter ++;
    echo $start->format('d:m:Y') . '<br>';
    $start->modify( 'first day of next month' );
}
echo '::' . $counter . '..<br>';

1 个答案:

答案 0 :(得分:0)

<?php
$stat = Array('02.01.2012', '07.04.2012');
$stop = strtotime($stat[1]);
list($d, $m, $y) = explode('.', $stat[0]);
$count = 0;
while (true) {
    $m++;
    $cursor = mktime(0, 0, 0, $m, $d, $y);
    if ($cursor < $stop) $count ++; else exit;
}
echo $count;
?>

简单的方法:D