Php obtient une valeur aléatoire à partir d'un tableau

Exemples de code

6
0

php obtient un élément aléatoire à partir d'un 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";
?>

4
0

choisissez un mot aléatoire dans un tableau php

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

php obtient une valeur aléatoire à partir d'un tableau

$colors=["red","blue","green","orange"];
echo $colors[array_rand($colors)];//green (or any color randomly)

Pages connexes

Pages d'exemples similaires

Dans d'autres langues

Cette page est dans d'autres langues

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................