Source: lesson_05_p_array_rand.php | Résultat |
<?php /*La fonction array_rand() renvoie aléatoirement un nombre fixe de valeurs du tableau*/ $fruits = array("pomme", "poire", "pêche", "abricot", "fraise", "cassis","melon"); $troisFruits = array_rand($fruits, 3); echo "<table width=80% border=1 align=center><tr> <th>Tableau_1</th><th>Trois fruits au hasard</th><tr><td>"; //tableau $cars_rented echo "<table border=1 align=center> <tr><th>Valeur</th><th>Clé</th></tr>"; foreach($fruits as $maClé=>$maValeur) { echo "<tr><td>$maValeur</td><td>$maClé</td></tr>"; } echo "</table></td><td align=center>"; //tableau $cars_rented_count echo "<table border=1 align=center> <tr><th>Valeur</th><th>Clé</th><th>Fruit</tr>"; foreach($troisFruits as $maClé=>$maValeur) { echo "<tr><td>$maValeur</td><td>$maClé</td> <td>$fruits[$maValeur]</td></tr>"; } echo "</table></td><td align=center>"; echo "</td></tr></table>"; ?>
|
Tableau_1 | Trois fruits au hasard |
Valeur | Clé |
---|
pomme | 0 | poire | 1 | pêche | 2 | abricot | 3 | fraise | 4 | cassis | 5 | melon | 6 | |
Valeur | Clé | Fruit |
---|
0 | 0 |
pomme | 2 | 1 |
pêche | 6 | 2 |
melon | | |
|