phpvms/app/Support/Dates.php

49 lines
1015 B
PHP
Raw Normal View History

<?php
namespace App\Support;
use Carbon\Carbon;
class Dates
{
/**
* Get the list of months, given a start date
2018-08-27 00:40:04 +08:00
*
* @param Carbon $start_date
2018-08-27 00:40:04 +08:00
*
* @return array
*/
public static function getMonthsList(Carbon $start_date)
{
$months = [];
$now = date('Y-m');
$last_month = $start_date;
do {
$last_value = $last_month->format('Y-m');
$months[$last_value] = $last_month->format('Y F');
$last_month = $last_month->addMonth();
} while ($last_value !== $now);
return $months;
}
/**
* Return the start/end dates for a given month/year
2018-08-27 00:40:04 +08:00
*
* @param $month YYYY-MM
2018-08-27 00:40:04 +08:00
*
* @return array
*/
public static function getMonthBoundary($month)
{
[$year, $month] = explode('-', $month);
$days = cal_days_in_month(CAL_GREGORIAN, $month, $year);
return [
"$year-$month-01",
2018-08-27 00:40:04 +08:00
"$year-$month-$days",
];
}
}