php 随机 数据元素,php随机从数组中抽取元素的方法

这篇文章主要介绍了php从数组中随机选择若干不重复元素的方法,涉及php数组操作的相关常用技巧,非常具有实用价值,需要的朋友可以参考下

本文实例讲述了php从数组中随机选择若干不重复元素的方法。具体实现方法如下:

代码如下:<?php

/*

* $array = the array to be filtered

* $total = the maximum number of items to return

* $unique = whether or not to remove duplicates before getting a random list

*/

function unique_array($array, $total, $unique = true){

$newArray = array();

if((bool)$unique){

$array = array_unique($array);

}

shuffle($array);

$length = count($array);

for($i = 0; $i < $total; $i++){

if($i < $length){

$newArray[] = $array[$i];

}

}

return $newArray;

}

$phrases = array('Hello Sailor','Acid Test','Bear Garden','Botch A Job','Dark Horse',

'In The Red','Man Up','Pan Out','Quid Pro Quo','Rub It In','Turncoat',

'Yes Man','All Wet','Bag Lady','Bean Feast','Big Wig', 'Big Wig','Bear Garden'

,'All Wet','Quid Pro Quo','Rub It In');

print_r(unique_array($phrases, 1));

// Returns 1 result

print_r(unique_array($phrases, 5));

// Returns 5 unique results

print_r(unique_array($phrases, 5, false));

// Returns 5 results, but may have duplicates if

// there are duplicates in original array

print_r(unique_array($phrases, 100));

// Returns 100 unique results

print_r(unique_array($phrases, 100, false));

// Returns 100 results, but may have duplicates if

// there are duplicates in original array

总结:以上就是本篇文的全部内容,希望能对大家的学习有所帮助。

相关推荐:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值