php从数组中随机抽取一些元素代码
发布:smiling 来源: PHP粉丝网 添加日期:2014-03-19 15:46:53 浏览: 评论:0
php从数组中随机抽取一些元素代码大家可参考一下.
实例代码如下:
- <?php
- class getValues {
- public function inputValue($inputArray) {
- $this->inputArray = $inputArray;
- }
- public function getValue($number) {
- $this->number = $number;
- for($i = 0; $i < $this->number; $i ++) {
- $index = rand ( 0, count ( $this->inputArray ) - 1 - $i );
- $getArray [$i] = $this->inputArray [$index];
- unset ( $this->inputArray [$index] );
- for($k = $index; $k < count ( $this->inputArray ) - 1; $k ++) {
- $this->inputArray [$k] = $this->inputArray [$k + 1];
- }
- }
- //asort ( $getArray ); // 从小到大排序,根据需要修改
- return $getArray;
- }
- }
- //测试代码
- $keywords = array(
- "我们",
- "你们",
- "他们"
- );
- $getValue=new getValues();
- $getValue->inputValue($keywords);
- $key = $getValue->getValue(1);//从数组中随机抽取一个元素
- ?>
Tags: 数组 抽取 随机
- 上一篇:php数组排序简单方法
- 下一篇:PHP array_merge合并拆分两个数组
相关文章
- ·PHP中数组定义的几种方法(2013-11-13)
- ·php学习笔记 [预定义数组(超全局数组)](2013-11-13)
- ·php session 预定义数组(2013-11-13)
- ·PHP 数组教程 定义数组(2013-11-13)
- ·我要如何在HTML中建立<form>数组?(2013-11-27)
- ·php 读取多维数组方法(2013-11-28)
- ·删除数组与二维数组值的php代码(2013-11-29)
- ·php 数组之删除空数组程序(2013-11-30)
- ·php删除数组中的空值或指定值操作(2013-11-30)
- ·PHP数组传递给JavaScript以及json_encode的gbk中文乱码(2013-12-02)
- ·php对数组元素去重复值(2013-12-03)
- ·php数组提示Notice: Undefined offset解决办法(2013-12-04)
- ·解决php array数组生成xml文件汉字编码问题(2013-12-07)
- ·php中向数组中插入一元素程序代码(2014-01-03)
- ·php删除数组元素几种方法(2014-01-03)
- ·php中count 多维数组长度统计实现方法(2014-01-03)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)