php random order from a foreach

fish man picture fish man · Jan 23, 2012 · Viewed 21.8k times · Source

I have some foreach, this could work well

foreach ($umm as $data) {
        echo '<img src="'.$data->picture.'" />';
        echo  $data->id;
}

Now I want shuffle the foreach. I tried:

foreach (shuffle($umm) as $data) {
        echo '<img src="'.$data->picture.'" />';
        echo  $data->id;
}

AND

foreach ($umm as $data) {
        $rand_pic[] = $data->picture;
        $rand_id[] = $data->id;
}
$ran = shuffle($rand_id);
foreach($ran as $new){
    echo '<img src="'.$new->picture.'" width="100" />';
    echo $new->id;
}

All these caused Warning: Invalid argument supplied for foreach() in second foreach. How to random order from a foreach?

Answer

Ry- picture Ry- · Jan 23, 2012

Take a look at the documentation for shuffle(). It takes a reference to an array and shuffles it in place. So you need to use it on the array, then iterate:

shuffle($umm);

foreach ($umm as $data) {
        echo '<img src="'.$data->picture.'" />';
        echo  $data->id;
}