php實作陣列隨機且不重複的方法:先建立一個PHP範例檔案;然後利用「array_flip()」函數將陣列的鍵與值翻轉;接著利用php陣列特性,覆寫重複的鍵並再翻轉一次;最後去掉重複的值即可。
推薦:《PHP影片教學》
下面寫幾種產生不重複隨機數的方法,直接上程式碼吧
<?php define('RANDOM_MAX', 100); define('COUNT', 10); echo 'max random num: '.RANDOM_MAX, ' ;result count:'.COUNT, '<br/>'; invoke_entry('rand1'); invoke_entry('rand2'); invoke_entry('rand3'); invoke_entry('rand4'); function invoke_entry($func_name) { $time = new time(); $time->time_start(); call_user_func($func_name); echo $func_name.' time spend: ', $time->time_spend(); echo '<br/>'; } function rand1() { $numbers = range (1, RANDOM_MAX); shuffle($numbers); //随机打乱数组 $result = array_slice($numbers, 1, COUNT); return $result; } function rand2() { $result = array(); while(count($result)< COUNT) { $result[] = mt_rand(1, RANDOM_MAX); //mt_rand()是比rand()更好更快的随机函数 $result = array_unique($result); //删除数组中重复的元素 } return $result; } function rand3() { $result = array(); while(count($result) < COUNT) { $_tmp = mt_rand(1, RANDOM_MAX); if(!in_array($_tmp, $result)) { //当数组中不存在相同的元素时,才允许插入 $result[] = $_tmp; } } return $result; } function rand4() { $result = array(); while (count($result) < COUNT) { $result[] = mt_rand(1, RANDOM_MAX); $result = array_flip(array_flip($result)); //array_flip将数组的key和value交换 } return $result; } class time { private $_start; public function time_start() { $this->_start = $this->microtime_float(); } public function time_spend() { return $this->microtime_float() - $this->_start; } private function microtime_float() { list($usec, $sec) = explode(" ", microtime()); return ((float)$usec + (float)$sec); } } ?>
說第四種方法,就是翻法了,利用array_flip()將陣列的鍵和值翻轉,利用php數組特性,重複的鍵會覆蓋,此時再翻轉一次,就相同於去掉了重複的值。
以上幾種方法只是簡單的例子,有的方法適用範圍有限。
在看看幾種方法的效率: