【发布时间】:2020-03-13 00:31:02
【问题描述】:
我有一个关联数组,其中键是日期时间类型的数据(间隔为 15 分钟)
array:37 [▼
"09:00" => Appointment {
#attributes: array:10 [▼
"id" => 1135
"startDateTime" => "2019-11-19 09:00:00"
"endDateTime" => "2019-11-19 09:45:00"
"duration" => 45
]
}
"09:15" => "" // I want to delete this row -> 15 minutes
"09:30" => "" // I want to delete this row -> 30 minutes end of the appointment
"09:45" => ""
"10:00" => Appointment {...duration => 60 ...}
"10:15" => "" // I want to delete this row -> 15 minutes
"10:30" => "" // I want to delete this row -> 30 minutes
"10:45" => "" // I want to delete this row -> 45 minutes
"11:00" => "" // I want to delete this row -> 60 minutes end of the appointment
"11:15" => ""
"11:30" => ""
"11:45" => "" Appointment {...duration => 15 ...}
...
]
这个数组将提供一个表格,所以我想根据每个约会的持续时间删除后续行。我需要它,因为我想将约会跨越几行:
<td class="the-appointment" rowspan="{{ $appointment->duration / 15 }}">...
因此我需要从数组中删除后续行。
我这样做了:
$index = -1;
foreach ($row as $key => $appointment) {
if ($appointment) {
$loops = $appointment->duration / 15;
}
for ($i = 1; $i < $loops; $i++) {
unset($row[$index + 1]);
$index++;
}
}
array_push($calendar, $row);
但由于它是一个关联数组,我无法获取循环的索引。有没有更聪明的方法来做到这一点?
【问题讨论】:
-
array_keys并将这些键用作值。array_splice是另一种解决方案,不需要密钥。
标签: php loops associative-array