How do I pick a random value from an array?
<?php
$lottery = range(1,49);
$onenumber = array_rand($lottery);
echo "One number is: $onenumber\n\n";
?>
This will print a random number between 1 and 49.
You can also use array_rand to return a certain number of random numbers.
People often like to write a little computer program to generate their weekly lottery numbers for them. Here's how to create a lottery number generator for the UK lottery that picks six random numbers between 1 and 49 in just one line of PHP code:
<?php
foreach(array_rand(range(1,49),6) as $number) echo "$number ";
?>
This will print a random selection of six numbers to the screen, for instance:
27 33 48 21 19 43
Comment on this Question and Answer >>>
ASK A QUESTION
More arrays PHP Questions
How can I create an array of numbers easily?How do I add to the beginning of an array and find the number of elements in it?
How to point internal pointer to first element of an array?
How do I reverse sort an array by key?
How do I find out if a value is already in an array?
