最模板 - 外贸网站建设,外贸网站模板

最模板

当前位置: 首页 > 建站教程 > php教程 >

php从数组中随机抽取一些元素代码

时间:2014-06-09 16:40来源: 作者: 点击:
php从数组中随机抽取一些元素代码大家可参考一下. 实例代码如下: ?php ​ class getValues{ public function inputValue( $inputArray ){ $this -inputArray= $inputArray ; } public function getValue( $number ){ $this -number= $numbe

php从数组中随机抽取一些元素代码大家可参考一下.

实例代码如下:

  1. <?php 
  2. class getValues { 
  3.  
  4.     public function inputValue($inputArray) { 
  5.         $this->inputArray = $inputArray
  6.     } 
  7.     public function getValue($number) { 
  8.         $this->number = $number
  9.         for($i = 0; $i < $this->number; $i ++) { 
  10.             $index = rand ( 0, count ( $this->inputArray ) - 1 - $i ); 
  11.             $getArray [$i] = $this->inputArray [$index]; 
  12.             unset ( $this->inputArray [$index] ); 
  13.             for($k = $index$k < count ( $this->inputArray ) - 1; $k ++) { 
  14.                 $this->inputArray [$k] = $this->inputArray [$k + 1]; 
  15.             } 
  16.         } 
  17.         //asort ( $getArray ); // 从小到大排序,根据需要修改 
  18.         return $getArray
  19.     } 
  20. //测试代码 
  21. $keywords  = array
  22.         "我们"
  23.         "你们"
  24.         "他们" 
  25. ); 
  26. $getValue=new getValues(); 
  27. $getValue->inputValue($keywords); 
  28. $key = $getValue->getValue(1);//从数组中随机抽取一个元素 
  29. ?> 
(责任编辑:admin)
------分隔线----------------------------
栏目列表
推荐内容