Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Having trouble with arrays.
#1
I want to execute the array randomly, but how can I do it in this form of example?

PHP Code:
$employee_array[0] = "Bob";
$employee_array[1] = "Sally";
$employee_array[2] = "Charlie";
$employee_array[3] = "Clare"

How can I make it echo randomly, 1-4?
Reply
#2
echo (array_rand($employee_array,1));

That should work.
Superman I am here to rescue you.
This is Support Forums not Support PMs.  Do not PM me for support unless it's private and site related.
Reply
#3
(09-17-2010, 01:17 AM)Omniscient Wrote: echo (array_rand($employee_array,1));

That should work.

Oh fudge. I've been doing it the hard way.

PHP Code:
$count count($arr) - 1;
$rand rand(0$count);
echo 
$arr[$rand]; 
Reply
#4
(09-17-2010, 01:17 AM)Omniscient Wrote: echo (array_rand($employee_array,1));

That should work.
I didnt know there were such function, That kills the time.

Thanks!
Feel free to PM me for anything. =P
Reply
#5
(10-06-2010, 01:51 PM)Orgy Wrote: Oh fudge. I've been doing it the hard way.

PHP Code:
$count count($arr) - 1;
$rand rand(0$count);
echo 
$arr[$rand]; 

Orgy always does at the hard way.
Reply
#6
(10-08-2010, 03:51 AM)ariton Wrote: Orgy always does at the hard way.

Nothing better than sending code to someone that makes them say, "What the fudge? Why is he doing this?"
[Image: TYzKF.png]
Reply
#7
(10-08-2010, 04:35 AM)Orgy Wrote: Nothing better than sending code to someone that makes them say, "What the fudge? Why is he doing this?"

Every once in a while I will run across a code review request at work (all major commits need code reviews) that makes me say something along the same line. Oddly enough the person who made the commit is almost always an intern.

Another alternative to the array_rand () method, if you're using the entire array and don't need to pull out random indices, is the shuffle () method. It does as its name suggestions: randomizes the order of the array elements.
Ho, ho, ho! Well, if it isn't fat stinking billy goat Billy Boy in poison!
How art thou, thou globby bottle of cheap, stinking chip oil?
Come and get one in the yarbles, if ya have any yarbles, you eunuch jelly thou!
Reply
#8
(10-08-2010, 04:46 AM)Disease Wrote: Every once in a while I will run across a code review request at work (all major commits need code reviews) that makes me say something along the same line. Oddly enough the person who made the commit is almost always an intern.

Another alternative to the array_rand () method, if you're using the entire array and don't need to pull out random indices, is the shuffle () method. It does as its name suggestions: randomizes the order of the array elements.

I remember when I first discovered shuffle(). It was so great, although now I can't remember why I needed it.
[Image: TYzKF.png]
Reply
#9
Wow, Omniscient came up with the goods. Nice work Omni!
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  apache trouble Socrates 9 1,428 11-09-2009, 08:15 PM
Last Post: Socrates

Forum Jump:


Users browsing this thread: 4 Guest(s)