str_random number mt_rand float array php random

php - number - Obtener elemento aleatorio de matriz



random number php no repeat (4)

Use la función PHP Rand

<?php $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"; ?>

php.net/manual/en/function.array-rand.php

Esta pregunta ya tiene una respuesta aquí:

$items = Array(523,3452,334,31,...5346);

Cada elemento de esta matriz es un número.

¿Cómo obtengo un artículo aleatorio de $items ?


Si no te importa elegir el mismo artículo en otro momento:

$items[rand(0, count($items) - 1)];