>백엔드 개발 >PHP 튜토리얼 >배열에서 일부 요소를 무작위로 추출하는 PHP 코드

배열에서 일부 요소를 무작위로 추출하는 PHP 코드

WBOY
WBOY원래의
2016-07-25 09:03:391072검색
  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으로 문의하세요.