Answers for "php return random array element"

PHP
2

random array php

$array = ["a", "b", "c"];
$random = $array[ Rand(0, count($array)-1) ];

echo $random; // a or b or c
Posted by: Guest on August-17-2021
1

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 "php return random array element"

Browse Popular Code Answers by Language