random() 随机返回几个元素
$collection = collect(['one', 'two', 'three', 'four', 'five', 'six', 'seven']);
return $collection->random(2); // 随机返回2个元素
return $collection->random(); // 随机返回一个元素
$collection = collect(['one', 'two', 'three', 'four', 'five', 'six', 'seven']);
return $collection->random(2); // 随机返回2个元素
return $collection->random(); // 随机返回一个元素
本文标题:laravel集合函数-random()
本文链接:https://www.haomeiwen.com/subject/amjgchtx.html
网友评论