gpt4 book ai didi

laravel - 获取集合的第一个、第二个、第三个元素

转载 作者:行者123 更新时间:2023-12-03 23:14:36 24 4
gpt4 key购买 nike

我有一个这样的集合:

Collection {#750 ▼
#items: array:18 [▼
18 => User {#691 ▶}
19 => User {#696 ▶}
20 => User {#701 ▶}
]
}

18、19、20 应该不同的地方

我试着打电话
 $collection->get(0);
$collection->get(1);
$collection->get(2);

但显然,它不起作用

我找到了一种使用 shift 的解决方法,它返回第一个元素并将其从集合中删除,
 $el1 = $collection->shift();
$el2 = $collection->shift();
$el3 = $collection->shift();

但在这种情况下,我的原始收藏被破坏了。

知道我应该怎么做吗?

最佳答案

您可以使用 slice() 方法:

$collection->slice(0, 3)

The slice method returns a slice of the collection starting at the given index. If you would like to limit the size of the returned slice, pass the desired size as the second argument.

关于laravel - 获取集合的第一个、第二个、第三个元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40309966/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com