我的供應商不允許安裝的Lavendel框架。所以我沒有權限訪問Lavendel-Structure。但我想克隆一些功能。特別是收集功能。 爲此,我下載從https://github.com/laravel/laravel完整libray並掃描文件進行收集。但沒有收集。這裏有什麼祕密。源文件在哪裏?它不是開源的嗎?找不到源文件Laravel
$collection = collect(['taylor', 'abigail', null])->map(function ($name) {
return strtoupper($name);
})
->reject(function ($name) {
return empty($name);
});
https://laravel.com/docs/5.4/collections
您正在尋找https://github.com/illuminate/support軟件包。我喜歡你的名字。 – Kyslik
是的,這是漢堡包:用奶酪說; – hamburger