ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
## random方法 从集合中返回一个随机项 从集合中返回一个随机项。 ~~~ $collection = collect([1, 2, 3, 4, 5]); $collection->random(); // 4 - (retrieved randomly) ~~~ 可以选择性传入一个整数到`random`来指定要获取的随机项的数量。 当显式传递希望接收的数量时,则会返回项目的集合。 ~~~ $collection = collect([1, 2, 3, 4, 5]); $random = $collection->random(3); $random->all(); // [0 => 1, 1 => 2, 4 => 5] - (retrieved randomly) ~~~