Parcourir un tableau au hasard en PHP - Browse an array randomly in PHP
Publié le .
[EN] To illustrate this example, we are going to create a great program which will give us 5 random numbers between 1 and 50 as well as 2 other numbers between 1 and 12... Like the famous game "EuroMillions" where you have more lucky to take a meteorite on your head than to become a multi-millionaire... But this sometimes happens, against all statistical logic (which for me remains a mystery). [FR] Pour illustrer cet exemple, nous allons crée un super programme qui va nous donner 5 numéros au hasard compris entre 1 et 50 ainsi que 2 autres numéros compris entre 1 et 12 ... Comme le célèbre jeu "EuroMillions" où vous avez plus de chance de vous prendre une météorite sur la tête que de devenir multi-millionnaire ... Mais cela arrive parfois, contre toute logique statistique (Ce qui pour moi reste un mystère).
// make an array of numbers from 1 to 50
$Array_numbers = range(1, 50);
// var_export($Array_numbers); // uncomment for see the array of numbers
// randomize numbers
$rand_keys = array_rand($Array_numbers, 5);
echo 'EuroMillions numbers : ';
for($i=0; $i < count($rand_keys); $i++){
echo $Array_numbers[$rand_keys[$i]].' ';
}
echo "\r\n";
// make an array of numbers from 1 to 12
$Array_stars = range(1, 12);
// randomize numbers
$rand_keys = array_rand($Array_stars, 2);
echo 'EuroMillions stars : '.$Array_stars[$rand_keys[0]].' '.$Array_stars[$rand_keys[1]];
// output :
// EuroMillions numbers : 1 17 24 28 47
// EuroMillions stars : 4 8
// i. -> Give me a small percentage if you win from this script, thanks!
Mots clés : PHP, Tableau, Array, hasard, Parcourir un array au hasard, parcourir un tableau au hasard,hasard php, hasard et tableaux php, random, Browse an array randomly, browse an array randomly, php random, random and php tables, EUROMILLIONS, Euromillions