Comment puis-je obtenir toutes les dates entre deux dates en PHP? Préfère utiliser Carbon pour les dates.
$from = Carbon::now();
$to = Carbon::createFromDate(2017, 5, 21);
Je veux avoir toutes les dates entre ces deux dates .. Mais comment? Ne peut trouver que des solutions utilisant la fonction strtotime.
À partir de Carbon 1.29, il est possible de faire:
$period = CarbonPeriod::create('2018-06-14', '2018-06-20');
// Iterate over the period
foreach ($period as $date) {
echo $date->format('Y-m-d');
}
// Convert the period to an array of dates
$dates = $period->toArray();
Voir la documentation pour plus de détails: https://carbon.nesbot.com/docs/#api-period .
Voici comment je l'ai fait avec Carbon
private function generateDateRange(Carbon $start_date, Carbon $end_date)
{
$dates = [];
for($date = $start_date->copy(); $date->lte($end_date); $date->addDay()) {
$dates[] = $date->format('Y-m-d');
}
return $dates;
}
Carbon étant une extension de DateTime intégré à PHP, vous devriez pouvoir utiliser DatePeriod et DateInterval, exactement comme vous le feriez avec un objet DateTime.
$interval = new DateInterval('P1D');
$to->add($interval);
$daterange = new DatePeriod($from, $interval ,$to);
foreach($daterange as $date){
echo $date->format("Ymd"), PHP_EOL;
}
EDIT
Si vous devez inclure la date finale de la période, vous devez la modifier légèrement et ajuster $to
avant de générer la DatePeriod
$interval = new DateInterval('P1D');
$daterange = new DatePeriod($from, $interval ,$to);
foreach($daterange as $date){
echo $date->format("Ymd"), PHP_EOL;
}
Basé sur la réponse de Mark Baker, j'ai écrit cette fonction:
/**
* Compute a range between two dates, and generate
* a plain array of Carbon objects of each day in it.
*
* @param \Carbon\Carbon $from
* @param \Carbon\Carbon $to
* @param bool $inclusive
* @return array|null
*
* @author Tristan Jahier
*/
function date_range(Carbon\Carbon $from, Carbon\Carbon $to, $inclusive = true)
{
if ($from->gt($to)) {
return null;
}
// Clone the date objects to avoid issues, then reset their time
$from = $from->copy()->startOfDay();
$to = $to->copy()->startOfDay();
// Include the end date in the range
if ($inclusive) {
$to->addDay();
}
$step = Carbon\CarbonInterval::day();
$period = new DatePeriod($from, $step, $to);
// Convert the DatePeriod into a plain array of Carbon objects
$range = [];
foreach ($period as $day) {
$range[] = new Carbon\Carbon($day);
}
return ! empty($range) ? $range : null;
}
Usage:
>>> date_range(Carbon::parse('2016-07-21'), Carbon::parse('2016-07-23'));
=> [
Carbon\Carbon {#760
+"date": "2016-07-21 00:00:00.000000",
+"timezone_type": 3,
+"timezone": "UTC",
},
Carbon\Carbon {#759
+"date": "2016-07-22 00:00:00.000000",
+"timezone_type": 3,
+"timezone": "UTC",
},
Carbon\Carbon {#761
+"date": "2016-07-23 00:00:00.000000",
+"timezone_type": 3,
+"timezone": "UTC",
},
]
Vous pouvez également passer un booléen (false
) en tant que troisième argument pour exclure la date de fin.
Voici ce que j'ai
private function getDatesFromRange($date_time_from, $date_time_to)
{
// cut hours, because not getting last day when hours of time to is less than hours of time_from
// see while loop
$start = Carbon::createFromFormat('Y-m-d', substr($date_time_from, 0, 10));
$end = Carbon::createFromFormat('Y-m-d', substr($date_time_to, 0, 10));
$dates = [];
while ($start->lte($end)) {
$dates[] = $start->copy()->format('Y-m-d');
$start->addDay();
}
return $dates;
}
Exemple:
$this->getDatesFromRange('2015-03-15 10:10:10', '2015-03-19 09:10:10');
Cela peut aussi être fait comme ça:
new DatePeriod($startDate, new DateInterval('P1D'), $endDate)
Gardez juste à l’esprit que DatePeriod
est un itérateur, donc si vous voulez un tableau réel:
iterator_to_array(new DatePeriod($startDate, new DateInterval('P1D'), $endDate))
Dans Laravel, vous pouvez toujours créer une macro Carbon:
Carbon::macro('range', function ($start, $end) {
return new Collection(new DatePeriod($start, new DateInterval('P1D'), $end));
});
Maintenant vous pouvez faire ceci:
foreach (Carbon::range($start, $end) as $date) {
// ...
}
Vous pouvez utiliser directement Carbon
$start = Carbon::createFromDate(2017, 5, 21);
$end = Carbon::now();
while($start < $end){
echo $start->format("M");
$start->addMonth();
}
Vous ne pouvez pas utiliser directement la variable de contrôle de boucle, la suivante doit fonctionner correctement
$start = Carbon::today()->startOfWeek();
$end = Carbon::today()->endOfWeek();
$stack = [];
$date = $start;
while ($date <= $end) {
if (! $date->isWeekend()) {
$stack[] = $date->copy();
}
$date->addDays(1);
}
return $stack;