“php comment boucle via array_rand” Réponses codées

Choisissez un mot aléatoire dans un tableau PHP

$items = array(1, 2, 3, 4, 5);
echo $items[array_rand($items)];
Jumping Boy

php obtient un élément aléatoire du tableau

<?php
//array_rand ( array $array [, int $num = 1 ] ) 
$input = array("Neo", "Morpheus", "Trinity", "Cypher", "Tank");
$rand_keys = array_rand($input, 2);
echo $input[$rand_keys[0]] . "\n";
echo $input[$rand_keys[1]] . "\n";
?>

Alberto Peripolli

php comment boucle via array_rand

$pick = random_int(1, 3);
$array = array("A", "B", "C", "D", "E", "F");
$random_key = array_rand($array, $pick);
foreach($random_key as $key) {
	echo $array[$key] . "<br />";
}
Mamoun Adil

Réponses similaires à “php comment boucle via array_rand”

Questions similaires à “php comment boucle via array_rand”

Plus de réponses similaires à “php comment boucle via array_rand” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code