reject方法

使用指定的回调过滤集合。如果回调返回 true ,就会把对应的项目从集合中移除。

$collection = collect([1, 2, 3, 4]);

$filtered = $collection->reject(function ($value, $key) {
    return $value > 2;
});

$filtered->all(); // [1, 2]

reject() 相反的方法,查看 filter方法。

Copyright © http://blog.webfsd.com 2018 all right reserved,powered by Gitbook该文件修订时间: 2019-05-21 04:55:26

results matching ""

    No results matching ""