是否可以使用一些類似於forget()
的整齊的Laravel收集方法,它將與嵌套數組一起工作。Laravel收藏。忘記嵌套鍵()
這是我想要的一個例子。
我有這樣一個Collection
實例:
而且我想以類似的方式下降coordinates
列(所有項目都相同)
$cities->forget('cities', 2) // (second parameter is not real, it's a "nested level" and I took it from my head as example of what I want)
作爲一個答案,我」 d喜歡接收一些現有的Collection
方法或者一個Collection
宏,這將在一行中工作。
所有其他「多行選項」與unset()
和map()
不會更好,比我現在:)
可以在laravel延長集合,如果你想讓它這種方式來刪除它
coordinates
。其他方式未設置最快 –@BartłomiejSobieszek謝謝你的答案。是的,我知道Collections宏,但我認爲可能有更明顯的解決方案。我喜歡整齊小巧的管道。 –