php에서 임의의 배열을 얻으려면 코드를 게시하세요. 말할 필요도 없이 그냥 코드를 직접 게시하세요. php의 array_rand는 매우 비정상적이고 일반 사람들의 이해를 깨뜨리고 번거롭습니다
function create_random_ids( $min,$max,$limited ) { $_base_ids = range($min,$max); $_temp_key = array_rand ($_base_ids,min(count($_base_ids),$limited+10)); //拼接 $ids = array(); for ($x=0; $x < count($_temp_key); $x++) { $ids[] = $_base_ids[$_temp_key[$x]]; } return $ids; }