“PHP Cómo recorrer Array_Rand” Código de respuesta

Elija una palabra aleatoria de una matriz PHP

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

PHP obtiene elemento aleatorio de la matriz

<?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 Cómo recorrer 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

Respuestas similares a “PHP Cómo recorrer Array_Rand”

Preguntas similares a “PHP Cómo recorrer Array_Rand”

Más respuestas relacionadas con “PHP Cómo recorrer Array_Rand” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código