PHP array_rand()不是真的随意吗?

时间:2014-05-07 15:33:04

标签: php random

我正在编写一些代码来随机化一系列演示文稿。相同的演示文稿不能背靠背播放。

$d数组将是演示文稿ID的列表以及演示文稿应在循环中播放的次数。

以下代码运行正常,但结果并非真正随机。当我开始一遍又一遍地看到相同的模式时,我正在调试。看看这个输出:

ighbajafpbailgjacbiaeldiqjaphafgdjcbapsaebjfdkcknijhbdgecaimabodalkfbgbhacbhnrjeofbdjbfhegmbpdkialmbocnliaebfaimcabchgoecbcdimgepnfjgfbfbohdahdkjgneaebha

ighbajafpbailgjacbiaeldiqjaphafgdjcbapsaebjfdkcknijhbdgecaimabodalkfbgbhacbhnrjeofbdjbfhegmbpdkialmbocnliaebfaimcabchgoecbcdimgepnfjgfbfbohdahdkjgneaebha

这两个是相距4次。他们是完全相同的。 4运行后,相同的字符串。另外4次运行,相同的字符串。事实上,当我运行它时,我似乎正在按顺序获得相同的4个字符串。

我的代码在下面,任何人都可以指出我可能已经成为什么吗?如果我没有做任何事情,为什么" rand"所以不随机?我怎么能解决这个问题?

$d = array(
    array('a', '20'), array('b', '20'), array('c', '10'), array('d', '10'), array('e', '10'), array('f', '10'), array('g', '10'), array('h', '10'), array('i', '10'), array('j', '10'), array('k', '5'), array('l', '5'), array('m', '5'), array('n', '5'), array('o', '5'), array('p', '5'), array('q', '1'), array('r', '1'), array('s', '1'));
$out = randomizeArray($d);
//var_dump($out);

function randomizeArray ($data) {
    // Step 1: Make an array of the id's with repeats for count.
    $rarray = array();
    foreach ($data as $i => $v) {
        while ($data[$i][1] > 0) {
            array_push($rarray, $data[$i][0]);
            $data[$i][1]--;
        }
    }
    // Step 2: Randomize.
    $stat = 1;
    while ($stat == '1') {
        //echo "<br><br>Randomizing Array: <br>";
        $stat = rarr($rarray);
    }
    return $stat;
}
function rarr ($a) {
    $r = array();
    $last = "";
    while ($a) {
        $rand = array_rand($a, 1);
        // Does this value match the last one we got?
        if ($a[$rand] != $last) {
            // Nope. Transfer to our $r array.
            echo $a[$rand];
            array_push($r, $a[$rand]);
            $last = $a[$rand];
            unset($a[$rand]);
        } else {
            // We have a match between our "last" presentation and the one we just selected.
            // We need to scan our array and verify that we still have different values.
            $check = $a[$rand];
            foreach ($a as $c) {
                if ($check != $c) {
                    // We have at least 2 different values in our array still.
                    // Rerun the while loop
                    continue 2;
                }
            }
            // All of the values left in our array are repeats.
            // That's no good, so return an error and rerun.
            return 1;
        }
    }
    // Everything is awesome. Return the randomized array.
    return $r;
}

3 个答案:

答案 0 :(得分:2)

据我所知,解决方案是在第2步之前添加:

shuffle($rarray);

似乎它解决了一些问题。重复精确47次。

如果你在rarr函数中稍后添加它:

while ($a) {
    shuffle($a);

如果重复52次

看起来它实际上是array_rand函数的问题。将array_rand更改为mt_rand,如下面的代码所示:

<?php
$d = array(
    array('a', '20'), array('b', '20'), array('c', '10'), array('d', '10'), array('e', '10'), array('f', '10'), array('g', '10'), array('h', '10'), array('i', '10'), array('j', '10'), array('k', '5'), array('l', '5'), array('m', '5'), array('n', '5'), array('o', '5'), array('p', '5'), array('q', '1'), array('r', '1'), array('s', '1'));

    for ($i=0; $i<10000; ++$i) {
        //ho "x";
        $out = randomizeArray($d);
        echo implode('',$out)."<br />";   
    }    


//var_dump($out);

function randomizeArray ($data) {
    // Step 1: Make an array of the id's with repeats for count.
    $rarray = array();
    foreach ($data as $i => $v) {
        while ($data[$i][1] > 0) {
            array_push($rarray, $data[$i][0]);
            $data[$i][1]--;
        }
    }
    // Step 2: Randomize.
    $stat = 1;
    while ($stat == '1') {
        //echo "<br><br>Randomizing Array: <br>";
        $stat = rarr($rarray);
    }
    return $stat;
}
function rarr ($a) {
    $r = array();
    $last = "";
    while ($a) {
        $rand = mt_rand(0,count($a)-1);
        // Does this value match the last one we got?
        if ($a[$rand] != $last) {
            // Nope. Transfer to our $r array.
           // echo $a[$rand];
            array_push($r, $a[$rand]);
            $last = $a[$rand];
            unset($a[$rand]);
            $a = array_values($a);
        } else {
            // We have a match between our "last" presentation and the one we just selected.
            // We need to scan our array and verify that we still have different values.
            $check = $a[$rand];
            foreach ($a as $c) {
                if ($check != $c) {
                    // We have at least 2 different values in our array still.
                    // Rerun the while loop
                    continue 2;
                }
            }
            // All of the values left in our array are repeats.
            // That's no good, so return an error and rerun.
            return 1;
        }
    }
    // Everything is awesome. Return the randomized array.
    return $r;
}

使字符串非常独特。

如果有人能解释它是PHP错误或“功能”

,我真的很好奇

答案 1 :(得分:0)

我仍然感兴趣为什么这个功能无法正常工作。我今天尝试了一下并添加了

srand();

在启动randomizeArray函数之前。我从问题中留下了代码(所以只有array_rand)并添加了循环来测试10000个随机字符串。

它似乎有所帮助。字符串现在完全随机,与使用mt_rand相同。

我查看了文档http://au1.php.net/manual/en/function.array-rand.php,此处只有信息&#34; 4.2.0随机数生成器自动播种。&#34;。但我也查看了http://au1.php.net/manual/pl/function.array-rand.php处的波兰语文档 - 有关它的更多信息,将其翻译成英语:&#34;从PHP 4.2.0开始,不需要启动生成器srand()或mt_srand(),因为它会自动完成&#34;

好吧,我在PHP 5.5.12上测试它,实际上它似乎没有自动完成。我还检查了发生了什么,而不是srand()我将启动mt_srand(),无论是否有种子。它似乎根本没有帮助。只使用srand()使得array_rand实际上是随机函数。

答案 2 :(得分:0)

rand()和array_rand()是伪随机函数