本篇文章主要介紹自訂函數實現對數組內元素進行隨機調換的功能,有興趣的朋友參考下,希望對大家有所幫助。
本文實例講述了php對陣列內元素進行隨機調換的方法。具體分析如下:
這是一個自訂的php數組元素隨機調換的函數,php已經有一個內建的同樣功能的函數shuffle($Array),這個程式碼權當參考
// I noticed that there is already a built-in function that // does the same - so don't use mine ;-) // // --> shuffle($Array); // // http://de2.php.net/manual/de/function.shuffle.php // function RandomizeArray($array){ // error check: $array = (!is_array($array)) ? array($array) : $array; $a = array(); $max = count($array) + 10; while(count($array) > 0){ $e = array_shift($array); $r = rand(0, $max); // find a empty key: while (isset($a[$r])){ $r = rand(0, $max); } $a[$r] = $e; } ksort($a); $a = array_values($a); return $a; }
使用範例:
/* ** Example: */ $test_array = array('why','dont','visit','www','jonas','john','de',':-)'); print implode(", ", $test_array); print "\n"; print implode(", ", RandomizeArray($test_array)); /* Example output: why, dont, visit, www, jonas, john, de, :-) www, de, jonas, john, visit, why, :-), dont */
總結:以上就是這篇文章的全部內容,希望能對大家的學習有所幫助。
相關推薦:
以上是php自訂函數實現對數組內元素進行隨機調換的功能的詳細內容。更多資訊請關注PHP中文網其他相關文章!