欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php从数组中随机选择若干不重复元素的方法

程序员文章站 2023-04-06 19:12:59
本文实例讲述了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

希望本文所述对大家的php程序设计有所帮助。