Choose 3 different random values from an array

前端 未结 3 1454
小蘑菇
小蘑菇 2020-12-18 18:17

I have an array of 30 values and I need to extract from this array 3 different random values. How can I do it?

相关标签:
3条回答
  • 2020-12-18 18:55

    Shamelessly stolen from the PHP manual:

    <?php
    $input = array("Neo", "Morpheus", "Trinity", "Cypher", "Tank");
    $rand_keys = array_rand($input, 2);
    echo $input[$rand_keys[0]] . "\n";
    echo $input[$rand_keys[1]] . "\n";
    ?>
    

    http://us2.php.net/array_rand

    Note that, as of PHP 5.2.10, you may want to shuffle (randomize) the keys that are returned via shuffle($rand_keys), otherwise they will always be in order (smallest index first). That is, in the above example, you could get "Neo, Trinity" but never "Trinity, Neo."

    If the order of the random elements is not important, then the above code is sufficient.

    0 讨论(0)
  • 2020-12-18 19:06

    I'm not sure why bother using array_rand() at all as it's just an extra function call for seemingly no reason. Simply shuffle() and slice the first three elements:

    shuffle($array);
    print_r(array_slice($array, 0, 3));
    
    0 讨论(0)
  • 2020-12-18 19:18

    use shuffle($array) then array_rand($array,3)

    0 讨论(0)
提交回复
热议问题