共计 381 个字符,预计需要花费 1 分钟才能阅读完成。
您可以使用 PHP 的 rand() 函数生成随机数,并使用 in_array() 函数检查生成的随机数是否已经存在于数组中。如果存在,则继续生成随机数,直到生成一个不重复的数字为止。
以下是一个示例代码:
$min = 1; // 随机数最小值
$max = 100; // 随机数最大值
$count = 10; // 生成的随机数数量
$numbers = array(); // 存储生成的随机数
while (count($numbers) < $count) {$randomNumber = rand($min, $max);
if (!in_array($randomNumber, $numbers)) {$numbers[] = $randomNumber;
}
}
print_r($numbers);
这段代码将生成 10 个不重复的介于 1 到 100 之间的随机数,并将其存储在 $numbers 数组中。
丸趣 TV 网 – 提供最优质的资源集合!
正文完