Constant References
It is allowed to create const references to non-const values, but we may not change them through this reference.
$arr['2021.06.25']['type'][0]['06:00:00'];
arr[0]['date'] = '2021.06.25';
arr[0]['type'] = 0;
arr[0]['time'] = '06:00:00';
arr['2021.06.25']['type'][0]['time'] = '06:00:00'
arr['2021.06.25']['type']
является тупо одномерным массивом, который надо сортировать по методу выше.