array_2.array_rand时间:2023-03-09 15:10:20 从数组中随机取出一个或多个单元 <?php $arr = [1, 2, 3]; $rand = array_rand($arr, 2); var_dump($rand);