如何在php中获取给定日期范围的月份的开始和结束日期

时间:2011-07-07 14:30:28

标签: php datetime date

我使用以下代码显示当月的开始日期和结束日期。

function firstOfMonth() {
return date("m/d/Y", strtotime(date('m').'/01/'.date('Y').' 00:00:00'));
}

function lastOfMonth() {
return date("m/d/Y", strtotime('-1 second',strtotime('+1 month',strtotime(date('m').'/01/'.date('Y').' 00:00:00'))));
}

$date_start = firstOfMonth();
$date_end  = lastOfMonth();
echo $date_start;
echo $date_end;

问题:如何在一定日期范围内获取所有月份的开始和结束日期

例如:

function daterange($startdate,$enddate)
{
...
...
...
}

预期结果是日期范围$startdate$enddate之间每个月的开始日期和结束日期。

帮我解决这个问题....

3 个答案:

答案 0 :(得分:4)

<?php
//Function to return out start and end dates of all months in a date range given

function rent_range($start_date, $end_date)
{
    $start_date = date("m/d/Y", strtotime($start_date));
    $end_date   = date("m/d/Y", strtotime($end_date));
    $start = strtotime($start_date);
    $end = strtotime($end_date);

    $month = $start;
    $months[] = date('Y-m', $start);
    while($month < $end) {
      $month = strtotime("+1 month", $month);
      $months[] = date('Y-m', $month);
    }

    foreach($months as $mon)
    {
        $mon_arr = explode( "-", $mon);
        $y = $mon_arr[0];
        $m = $mon_arr[1];
        $start_dates_arr[] = date("m/d/Y", strtotime($m.'/01/'.$y.' 00:00:00'));
        $end_dates_arr[] = date("m/d/Y", strtotime('-1 minute', strtotime('+1 month',strtotime($m.'/01/'.$y.' 00:00:00'))));
    }

    //to remove first month in start date and add our start date as first date
    array_shift($start_dates_arr);
    array_pop($start_dates_arr);
    array_unshift($start_dates_arr, $start_date);

    //To remove last month in end date and add our end date as last date
    array_pop($end_dates_arr);
    array_pop($end_dates_arr);
    array_push($end_dates_arr, $end_date);

    $result['start_dates'] = $start_dates_arr;
    $result['end_dates'] = $end_dates_arr;
    return $result;
}

$start_date = '2011-07-29';
$end_date = '2012-03-31';
$res = rent_range($start_date, $end_date);
echo "<pre>";
print_r($res);
echo "</pre>";
?>

My Above Function将显示给定范围内日期的月份范围显示。 这个函数对于作为印度传统的月租金计算很有用。

这可能对其他人有帮助......

答案 1 :(得分:1)

查看date function并滚动到格式字符t,它会为您提供天数。开始日期始终为1: - )

在循环中执行此操作两个日期之间的月数并将值存储在数组中取决于您

答案 2 :(得分:0)

function firstAndLast($d=''){
    $d = $d?$d:time();
    $f = mktime(0,0,0,date("n",$d),1,date("Y",$d));
    $l = mktime(0,0,0,date("n",$d),date("t",$d),date("Y",$d));
    return array($f,$l);
}

list($first,$last) = firstAndLast();
echo date("d/m/Y",$first)." ($first) - ".date("d/m/Y",$last)." ($last)";

您可以将时间戳传递给该函数或将其留空,它将获取当前时间