繁体   English   中英

在PHP中每个月的两个日期之间得到

[英]get between two date all days for every Month in PHP

我怎么能像这样在两天之间获得两天之间的所有日子

$dateStart = "2016/12/14"; 
$dateFin =   "2017/04/21"

[2016/12/14 - 2016/12/31] => 17 days
[2017/01/01 - 2017/01/31] => 31 days
[2017/02/01 - 2017/02/28] => 28 days
[2017/03/01 - 2017/03/30] => 31 days
[2017/04/01 - 2017/04/21] => 21 days

您可以使用函数cal_days_in_month加上DateTime类:

<?php
$dateStart = new DateTime("2016/12/14");
$dateFin = new DateTime("2017/04/21");
$firstDay = $dateStart->format('Y/m/d');
$lastDay = $dateStart->format('Y/m/t');
$totalMonths = $dateStart->diff($dateFin)->m + ($dateStart->diff($dateFin)->y*12);
$result = [];
for ($i = 0; $i <= $totalMonths; $i++)
{
    if ($i != 0){
        $dateStart->modify('first day of next month');
        $firstDay = $dateStart->format('Y/m/d');
        $dateStart->modify('last day of month');
        $lastDay = $dateStart->format('Y/m/t');
    }

    $nextDate = explode('/', $firstDay);

    $totalDays = cal_days_in_month(CAL_GREGORIAN, $nextDate[1], $nextDate[2]);
    if ($i == 0){
        $totalDays -= $dateStart->format('d');
    } else if ($i == $totalMonths) {
        $totalDays = $dateFin->format('d');
    }

    $result["$firstDay - $lastDay"] = $totalDays;
}

var_dump($result);

缺乏改进,但给出了你的要求。

常规改进,请查看以下内容:

$dateStart = new DateTime("2016/12/14");
$dateFin = new DateTime("2017/04/21");
$totalMonths = $dateStart->diff($dateFin)->m + ($dateStart->diff($dateFin)->y*12);
$result = [];
for ($i = 0; $i <= $totalMonths; $i++)
{
    if ($i != 0){
        $obj = $dateStart->modify('first day of next month');
    }

    $firstDay = $dateStart->format('Y/m/d');
    if ($i == $totalMonths){
        $lastDay = $dateFin->format('Y/m/d');
    } else {
        $lastDay = $dateStart->format('Y/m/t');
    }
    $firstDayObj = strtotime($firstDay);
    $lastDayObj = strtotime($lastDay);
    $totalDays = (int) ceil(($lastDayObj - $firstDayObj) / 86400);
    $totalDays = ((int) $dateStart->format('d') == 1) ? $totalDays + 1 : $totalDays;
    $result["$firstDay - $lastDay"] = $totalDays;
}

var_dump($result);

//array(5) { ["2016/12/14 - 2016/12/31"]=> int(17) ["2017/01/01 - 2017/01/31"]=> int(31) ["2017/02/01 - 2017/02/28"]=> int(28) ["2017/03/01 - 2017/03/31"]=> int(31) ["2017/04/01 - 2017/04/21"]=> int(21) }

要获得两个日期的日期差异,您可以执行以下操作:

function daysDiff($d1, $d2) 
{
    $x1 = days($d1);
    $x2 = days($d2);

    if ($x1 && $x2) {
        return abs($x1 - $x2);
    }
}

function days(DateTime $x) 
{
    $y = $x->format('Y') - 1;
    $days = $y * 365;
    $z = (int)($y / 4);
    $days += $z;
    $z = (int)($y / 100);
    $days -= $z;
    $z = (int)($y / 400);
    $days += $z;
    $days += $x->format('z');

    return $days;
}

$ d1和$ d2应该是DateTime类型,我从这里复制此代码: http//php.net/manual/es/function.date-diff.php#117691并进行了一些小修改以使用类型提示而不是使用get_class验证变量类型

强大的功能,以获得两个日期差异

这里查看演示

function dateDifference($date_1, $date_2, $differenceFormat = '%a')
{
    $datetime1 = date_create($date_1);
    $datetime2 = date_create($date_2);

    $interval = date_diff($datetime1, $datetime2);

    return $interval->format($differenceFormat);
}

请根据上述说明尝试执行以下代码段作为解决方案

$start_date = new DateTime('2016/12/14');
$start_date=$start_date->modify('+1 day');
$end_date = new DateTime('2017/04/21');
$end_date = $end_date->modify('+1 day');

$interval = new DateInterval('P1D');
$daterange = new DatePeriod($start_date, $interval ,$end_date);
$month_days=array();
foreach($daterange as $date)
{
  $date_month=$date->format('m');
  $month_days[$date_month][]=$date->format('Y/m/d');
}
$result=array();
foreach($month_days as $days)
{
  $begin=reset($days);
  $end=end($days);
  $result[$begin.'-'.$end]=count($days);
}
echo '<pre>';
print_r($result);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM