Jump to content

How To Shuffle An Array Then Implode It?


CallMeDiz

Recommended Posts

Hey guys i've got a rookie question. How do i shuffle an array then display each number in the array using implode? Heres my code.

 

$maximum_integer = strip_tags(trim($_REQUEST['maximum_integer']));

$range = range(0,$maximum_integer);

 

 

$range_randomized[] = shuffle($range);

$random_range_imploded = implode(', ', $range_randomized);

print $random_range_imploded;

 

it just keeps displaying '1'....

 

Thanks!

Link to comment
https://forums.phpfreaks.com/topic/270488-how-to-shuffle-an-array-then-implode-it/
Share on other sites

shuffle does not return the shuffled array. It modifies the array passed as a parameter.

 

$maximum_integer = strip_tags(trim($_REQUEST['maximum_integer']));
$range = range(0,$maximum_integer);

shuffle($range);
$random_range_imploded = implode(', ', $range);
print $random_range_imploded;

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.