📜  laravel 集合随机 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:35.691000             🧑  作者: Mango

代码示例2
$collection = collect([1, 2, 3, 4, 5]);

$collection->random();

// 4 - (retrieved randomly)