first方法

返回集合中通过给定真实测试的第一个元素。

collect([1, 2, 3, 4])->first(function ($value, $key) {
    return $value > 2;
}); // 3

也可以不传入参数使用 first() 方法以获取集合中第一个元素。如果集合是空的,则会返回 null:

collect([1, 2, 3, 4])->first(); // 1

如果需要返回最后一个元素可以使用last()方法。

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

results matching ""

    No results matching ""