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 you reset an array in PHPHow do I reverse the order of the elements in an array?
How do I add to the beginning of an array and find the number of elements in it?
How do I turn an array into a string?
what is a array?
