我正在尝试在数组中生成6个数字,我正在使用mt_rand函数,但是我不能在数组中使用相同的数字。我将如何检查并再次生成数字?
我已经考虑过制作一个重复的数组并循环抛出并计算数组中的数量,如果它超过1然后重新生成数字并再次检查,但这似乎是很多工作的东西php可能有一个我无法找到的本机函数...
复制的东西不是我需要帮助的,就是检查值的关键,我需要所有值都是唯一的。
答案 0 :(得分:0)
$number_of_numbers = 6;//number_of_numbers in array
$min = 1;//minimum value of number that you want
$max = 15;//maximum value of number that you want
$array = array();
for ($a = 0; $a < $number_of_numbers; $a++) {
$check = 0;//for entering while loop
while ($check !== false) { //pick a number and check if it is in array if it is in the array, pick again and check again
$try[$a] = mt_rand($min, $max); //pick a number
$check = array_search($try[$a], $array);// search that number if it is in the array
}
$array[] = $try[$a]; //add number to array
}
var_dump($array); // show me the array
这是你的意思吗?我可能会误解数组键。你能解释一下吗?
这是输出。抱歉,我忘了先添加它。
array(6) { [0]=> int(10) [1]=> int(12) [2]=> int(3) [3]=> int(5) [4]=> int(9) [5]=> int(15) }