15

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?

3 Answers 3

41

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;
}
Sign up to request clarification or add additional context in comments.

Comments

5

shuffle() returns a boolean - you pass the array by reference

Try this:

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

Comments

2

Try This Shuffle:

<?php 
   shuffle($umm);
   foreach($umm as $key => $value): ?>
	<img src="<?php echo $value->picture; ?>" alt="<?php echo $value->title;?>" />
	<?php echo $value->id;?>	  
<?php endforeach; ?>

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.