Home and Learn: PHP Programming Course


Get a Random Key from a PHP Array

 

You can grab a random key from an array. This could be useful in games of chance. Here's a simple script that simulates a single dice throw:

<?PHP

$numbers = array(1 => 1, 2 => 2, 3 => 3, 4 => 4, 5 => 5, 6 => 6);
$random_key = array_rand($numbers, 1);
print $random_key;

?>

The function that returns the random key is this:

array_rand($numbers, 1);

You start off with the function array_rand( ). In between the round brackets, you need two things: the name of your array, and how many random keys you want to grab.

Try the script out. Refresh the page and you should see a different number between 1 and 6 display.

In the next part, we'll see how the count function works when applied to an array.

<-- Back One Page | Move on to the Next Part -->

Back to the PHP Contents Page

 

Email us: enquiry at homeandlearn.co.uk