在PHP中生成随机唯一数字数组?

对于随机唯一数字数组,请range()与一起使用shuffle()

示例

PHP代码如下

<!DOCTYPE html>
<html>
<body>
<?php
$limit_random_array_values = range(10, 20);
shuffle($limit_random_array_values);
$all_five_random_array_value = array_slice($limit_random_array_values ,0,5);
print_r($all_five_random_array_value);
?>
</body>
</html>

输出结果

这将产生以下输出

Array ( [0] => 11 [1] => 14 [2] => 15 [3] => 12 [4] => 18 )