Cet article présente principalement des exemples simples de valeurs aléatoires pour les tableaux PHP. Maintenant, je le partage avec vous. Les amis dans le besoin peuvent s'y référer. Lorsque vous souhaitez repartir de Très utile lors de la suppression d'une ou plusieurs cellules aléatoires d'un tableau. Il accepte l'entrée sous forme de tableau d'entrée et un paramètre facultatif num_req, qui spécifie le nombre de cellules que vous souhaitez supprimer - s'il n'est pas spécifié, la valeur par défaut est 1.
array_rand -- Prenez au hasard une ou plusieurs cellules du tableau
mixed array_rand ( array input [, int num_req])
N'oubliez pas d'appeler srand() pour amorcer le générateur de nombres aléatoires.
Exemple 1. array_rand() Exemple
Nous avons visité un tel site Web, et chaque fois que nous actualisons le bannière Modifications aléatoires, dans cet article, nous allons vous présenter comment utiliser PHP pour implémenter cette fonction.srand ((float) microtime() * 10000000); $input = array ("Neo", "Morpheus", "Trinity", "Cypher", "Tank"); $rand_keys = array_rand ($input, 2); print $input[$rand_keys[0]]."\n"; print $input[$rand_keys[1]]."\n";
Étapes
Le principe de mise en œuvre du programme est le suivant : appeler un tableau, chaque image correspond à un élément du tableau, puis nous définissons un nombre aléatoire tant qu'une donnée est. obtenue au hasard, une image peut être affichée.
La première étape consiste pour nous à générer un nombre aléatoire. Nous obtenons des nombres aléatoires différents à chaque fois que nous actualisons. Le code spécifique est :
srand((float) microtime() * 10000000);
$image[1]='/location/of/image1.jpg'; $image[2]='/location/of/image2.jpg'; $image[3]='/location/of/image3.jpg'; $image[4]='/location/of/image4.jpg'; $image[5]='/location/of/image5.jpg';
$rn = array_rand($image);
echo '<img src="'.$image[$rn].'">';
srand((float) microtime() * 10000000); $image[1]='/location/of/image1.jpg'; $image[2]='/location/of/image2.jpg'; $image[3]='/location/of/image3.jpg'; $image[4]='/location/of/image4.jpg'; $image[5]='/location/of/image5.jpg'; $rn = array_rand($image); echo '<img src="'.$image[$rn].'">';
$image[1]['pic']='/location/of/image1.jpg'; $image[1]['link']='/location/of/link1.php';
echo '<a href="'.$image[$rn]['link'].'">'; echo '<img src="'.$image[$rn]['pic'].'">';
srand((float) microtime() * 10000000); $image[1]['pic']='/location/of/image1.jpg'; $image[1]['link']='/location/of/link1.php'; $image[2]['pic']='/location/of/image2.jpg'; $image[2]['link']='/location/of/link2.php'; $image[3]['pic']='/location/of/image3.jpg'; $image[3]['link']='/location/of/link3.php'; $image[4]['pic']='/location/of/image4.jpg'; $image[4]['link']='/location/of/link4.php'; $image[5]['pic']='/location/of/image5.jpg'; $image[5]['link']='/location/of/link5.php'; $rn = array_rand($image); echo '<a href="'.$image[$rn]['link'].'">'; echo '<img src="'.$image[$rn]['pic'].'">';
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!