自己編寫的壹個程序,供樓主參考:
<?php
/*$phone_num數組存有100個手機號,隨機產生10個號,放入$phone_rand_num數組中*/
$phone_rand_num=array();
$i=0;
while($i<10)
{
$k=rand(0,99);//產生隨機數
while(!in_array($phone_num[$k],$phone_rand_num))
//確保產生的隨機數選出的號碼不在已讀出數組中
{
$k=rand(0,99);
}
$phone_rand_num[$i]=$phone_num[$k];
$i++;
}
>