Laravel 8 except() {#collection-method}
2021-07-19 09:35 更新
except
方法返回集合中除了指定键之外的所有集合项:
$collection = collect(['product_id' => 1, 'price' => 100, 'discount' => false]);
$filtered = $collection->except(['price', 'discount']);
$filtered->all();
// ['product_id' => 1]
与 except
对应的是 only 方法。
技巧:这个方法的行为当使用 Eloquent Collections 时会被重写。
以上内容是否对您有帮助:
更多建议: