I have a problem condensing a large list of dates.
The source code can be seen here https://onlinephp.io/c/d8277
Source code:
<?php
function list_date($array = [])
{
$events = $array;
for ($i = 0; $i < count($events); $i++)
{
$this_event = $events[$i];
$this_start_date = strtotime($this_event["date"]);
$this_end_date = strtotime($this_event["date"]);
$this_start_month = date("M", $this_start_date);
$this_end_month = date("M", $this_end_date);
$this_start_year = date("Y", $this_start_date);
$this_end_year = date("Y", $this_end_date);
$last = ($i == count($events) - 1);
if (!$last)
{
$next_event = $events[$i + 1];
$next_start_date = strtotime($next_event["date"]);
$next_end_date = strtotime($next_event["date"]);
$next_start_month = date("M", $next_start_date);
$next_end_month = date("M", $next_end_date);
$next_start_year = date("Y", $next_start_date);
$next_end_year = date("Y", $next_end_date);
}
if (($this_start_month != $this_end_month) ||
($this_start_year != $this_end_year))
{
echo date("j/m", $this_start_date);
if ($this_start_year != $this_end_year)
{
echo " ".date("Y", $this_start_date);
}
echo "-".date("j/m/Y", $this_end_year)." <br/>\n";
}
else
{
echo date("j", $this_start_date);
if ($this_start_date != $this_end_date)
{
echo "-".date("j", $this_end_date);
}
$newline = false;
if ($last ||
($this_start_month != $next_end_month))
{
echo " ".date("m", $this_start_date);
$newline = true;
}
if ($last ||
($this_start_year != $next_end_year) ||
($next_start_month != $next_end_month))
{
echo " ".date("Y", $this_start_date);
$newline = true;
}
if ($newline)
{
echo " <br/>\n";
}
else
{
echo ", ";
}
}
}
}
$data = [
[
'name' => 'Event A',
'date' => '2023-03-1'
],
[
'name' => 'Event B',
'date' => '2023-03-2'
],
[
'name' => 'Event C',
'date' => '2023-03-3'
],
[
'name' => 'Event D',
'date' => '2023-03-7'
],
[
'name' => 'Event E',
'date' => '2023-03-9'
],
];
echo "Event Schedule " . list_date($data);
Current output: Event Schedule 1, 2, 3, 7, 9 03 2023
The output what I want: Event Schedule 1 - 3, 7, 9 / 03 / 2023
Thank you.