我有一张桌子要预订:
id room_id start end
1 1 2019-10-04 2019-10-14
2 1 2019-10-13 2019-10-22
3 1 2019-12-16 2019-12-25
4 1 2019-11-30 2019-12-18
房间表:
id name type
1 002 1-A
2 005 3-B
所以我只想要一个房间类型的样本,1-A我想将预订分组foreach到这个输出:
start_date => 2019-10-04 AND end_date => 2019-10-22
start_date => 2019-11-30 AND end_date => 2019-12-25
应该有2组。
我试过用这个
$new = array();
foreach($bookingArr as $booking) {
$new[$booking->room_id][$booking->start][] = $booking;
}
但我没有得到我想要的输出。
慕婉清6462132