首頁 >後端開發 >php教程 >從陣列中隨機抽取一些元素的php程式碼

從陣列中隨機抽取一些元素的php程式碼

WBOY
WBOY原創
2016-07-25 09:03:391094瀏覽
  1. /**

  2. * 随机抽取数组元素
  3. * author: notuser
  4. * 2012-12-29
  5. */
  6. class getValues {
  7. public function inputValue($inputArray) {
  8. $this->inputArray = $inputArray;
  9. }
  10. public function getValue($number) {
  11. $this->number = $number;
  12. for($i = 0; $i < $this->number; $i ++) {
  13. $index = rand ( 0, count ( $this->inputArray ) - 1 - $i );
  14. $getArray [$i] = $this->inputArray [$index];
  15. unset ( $this->inputArray [$index] );
  16. for($k = $index; $k < count ( $this->inputArray ) - 1; $k ++) {
  17. $this->inputArray [$k] = $this->inputArray [$k + 1];
  18. }
  19. }
  20. //asort ( $getArray ); // 从小到大排序,根据需要修改
  21. return $getArray;
  22. }
  23. }

  24. //测试代码

  25. $keywords = array(
  26. "我们",
  27. "你们",
  28. "他们"
  29. );
  30. $getValue=new getValues();
  31. $getValue->inputValue($keywords);
  32. $key = $getValue->getValue(1);//从数组中随机抽取一个元素
  33. echo $key;
  34. ?>

复制代码


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn