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)
Copyright © http://blog.webfsd.com 2018 all right reserved,powered by Gitbook该文件修订时间: 2019-05-21 04:55:26

results matching ""

    No results matching ""