PHP產生不重複隨機數的5個方法總結

來源:互聯網
上載者:User

標籤:rand   移動   and   排列   sheng   srand   http   target   總結   

無論是Web應用,還是WAP或者行動裝置 App,隨機數都有其用武之地。在最近接觸的幾個小項目中,我也經常需要和隨機數或者隨機數組打交道,所以,對於PHP如何產生不重複隨機數常用的幾種方法小結一下

無論是Web應用,還是WAP或者行動裝置 App,隨機數都有其用武之地。在最近接觸的幾個小項目中,我也經常需要和隨機數或者隨機數組打交道,所以,對於PHP如何產生不重複隨機數常用的幾種方法小結一下

 

方法一:

$numbers = range (1,50); 

//shuffle 將數組順序隨即打亂 

shuffle ($numbers); 

//array_slice 取該數組中的某一段 

$num=6; 

$result = array_slice($numbers,0,$num); 

print_r($result); 

?>

 

方法二:

$numbers = range (1,20); 

//播下隨機數發生器種子,可有可無,測試後對結果沒有影響

srand ((float)microtime()*1000000); 

shuffle ($numbers); 

//跳過list第一個值(儲存的是索引)

while (list(, $number) = each ($numbers)) { 

echo "$number "; 

?>

 

方法三:

function NoRand($begin=0,$end=20,$limit=5){ 

$rand_array=range($begin,$end); 

shuffle($rand_array);//調用現成的數組隨機排列函數 

return array_slice($rand_array,0,$limit);//截取前$limit個 

print_r(NoRand()); 

?>

上述可以在1-20間隨機產生5個不重複的值

 

方法四:

代碼如下:

$tmp=array(); 

while(count($tmp)<5){ 

$tmp[]=mt_rand(1,20); 

$tmp=array_unique($tmp); 

print_r($tmp);

?>

 

方法五:

代碼如下:

$tmp = range(1,30);

print_r(array_rand($tmp,10));

?>

 

這個可能是比叫簡單的了(ps:如果在range中指定了步長,就必須注意array_rand的第二個參數是否超出$tmp的長度)。

 

參考連結:http://www.php1.cn/Content/PHP_ChanShengBuZhongFuSuiJiShuDe_5_GeFangFaZongJie.html

PHP產生不重複隨機數的5個方法總結

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.