php 指定範圍內多個隨機數代碼執行個體_php技巧

來源:互聯網
上載者:User

調用mt_rand()這個方法可以產生隨機數字,參數是範圍的最小值和最大值,函數會返回最小值和最大值之間的一個隨機數字。
要產生真正的隨機數,對於計算來說不是一件容易的事。

php中兩種方法可以產生隨機數,一個經典的函數叫rand(),另一個更出色的函數是mt_rand()。

例1

 代碼如下

$random =rand(0,1000);

或者

<?php $rand = mt_rand(1, 100);  echo $rand;?>

例2

代碼如下

srand((double)microtime()*1000000); $random =rand(0,1000);

例3

 代碼如下

/** 
*擷取一定範圍內的多個隨機數字
*/ function yang_numberRand($begin = 0, $end = 20, $limit = 5){ $rand_array = range($begin, $end); shuffle($rand_array); //調用現成的數組隨機排列函數 return array_slice($rand_array, 0, $limit); //截取前$limit個 }

 通過本文希望能對PHP編程中遇到此問題的朋友提供協助!

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.