从数组中随机取出一个或多个单元

<?php
$arr = [1, 2, 3];
$rand = array_rand($arr, 2); var_dump($rand);

array_2.array_rand-LMLPHP

05-22 23:36