Answers for "pick random value from array php"

PHP
5

php get random element from array

<?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";
?>
Posted by: Guest on June-20-2020
0

array random php

<?php
$indexedArray = array("red", "blue", "green", "black");

echo $indexedArray[0] . "<br>";
echo $indexedArray[1] . "<br><br>";

$array_random = array_rand($indexedArray, 2);

echo $indexedArray[$array_random[0]] . "<br>";
echo $indexedArray[$array_random[1]] . "<br>";
?>
Posted by: Guest on September-11-2021

Code answers related to "pick random value from array php"

Browse Popular Code Answers by Language