Home > Article > Backend Development > Implement a custom function to obtain a random array list in php, php array_PHP tutorial
Paste a piece of code, get a random array in php Needless to say, just paste the code directly, in php array_rand is very perverted, beyond normal people’s understanding, and cumbersome
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; }