php從數組中隨機播放若干不重複元素

來源:互聯網
上載者:User

php從數組中隨機播放若干唯一元素

  1. /*
  2. * $array = the array to be filtered
  3. * $total = the maximum number of items to return
  4. * $unique = whether or not to remove duplicates before getting a random list
  5. */
  6. function unique_array($array, $total, $unique = true){
  7. $newArray = array();
  8. if((bool)$unique){
  9. $array = array_unique($array);
  10. }
  11. shuffle($array);
  12. $length = count($array);
  13. for($i = 0; $i < $total; $i++){
  14. if($i < $length){
  15. $newArray[] = $array[$i];
  16. }
  17. }
  18. return $newArray;
  19. }
  20. $phrases = array('Hello Sailor','Acid Test','Bear Garden','Botch A Job','Dark Horse',
  21. 'In The Red','Man Up','Pan Out','Quid Pro Quo','Rub It In','Turncoat',
  22. 'Yes Man','All Wet','Bag Lady','Bean Feast','Big Wig', 'Big Wig','Bear Garden'
  23. ,'All Wet','Quid Pro Quo','Rub It In');
  24. print_r(unique_array($phrases, 1)); // Returns 1 result
  25. print_r(unique_array($phrases, 5)); // Returns 5 unique results
  26. print_r(unique_array($phrases, 5, false)); // Returns 5 results, but may have duplicates if
  27. // there are duplicates in original array
  28. print_r(unique_array($phrases, 100)); // Returns 100 unique results
  29. print_r(unique_array($phrases, 100, false)); // Returns 100 results, but may have duplicates if
  30. // there are duplicates in original array
複製代碼
組中, 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.