目前,我有我試圖在排序以標題對象的數組,例如在目前,我有一個表格輸出是這樣的:添加標題
2014年2月1日 14: 15:00 14:50:00
2014年2月1日 14:50:00 15:25:00
2014年2月2日11點20分00秒 12:30 : 00
2014年2月2日 12:30:00 13點05分00秒
2014年2月4日17點10分00秒 十七時40分○○秒
2014年2月4日 17 :45:00 18點20分00秒
但是我正在尋找的是一個有點像這樣:
1 Febuary
2014年2月1日 14時十五分00秒 14:50:00
2014年2月1日 14:50:00 15:25:00
第二Febuary
2014年2月2日11時20分○○秒 12:30:00
2014年2月2日 12:30:00 13:05:00
4 febuary
2014年2月4日17時10分零零秒 17:40:00
2014年2月4日 17:45:00 十八時20分00秒
我使用laravel以從數據庫中檢索這些對象,而且每一個陣列內看起來有點像這樣:
object(Illuminate\Database\Eloquent\Collection)#922 (1) {
["items":protected]=>
array(228) {
[0]=>
object(Lesson)#695 (20) {
["attributes":protected]=>
array(16) {
["id"]=>
string(4) "7312"
["date"]=>
string(10) "2014-02-01"
["start_time"]=>
string(8) "14:15:00"
["end_time"]=>
string(8) "14:50:00"
}
}
[1]=> etc...
有沒有人知道是否可以用這種方式來組織標題?這是我忽略的一個簡單功能嗎?
看着這個,不會將第一個集合鍵設置爲0,而不是日期? –
非常正確。我現在修復了代碼示例,不再將第一個(空白)集合添加到主數組中(在'false'索引中)。 – alexrussell