1.实现过程:
新建php脚本。首先定义好随机数的范围以后,使用php内置rand()函数产生随机数。然后每次产生的随机数放入数组中,最终使用foreach遍历数组,打印出随机数。
2.实例代码
PHP
<?php
$num = 5;
$start = 0;
$end = 9;
$cont = 0;
while($cont < $num){
$a[] = rand($start,$end);
$ary = array_unique($a); // 遍历数组,如果有相同则剔除
$cont = count($ary);
}
$str = "";
foreach ($ary as $k=>$v){
$str .=" ".$v;
}
echo "输出5个随机数<br>";
echo "随机数:{$str}";
?>