array random php
<?php
$indexedArray = array("red", "blue", "green", "black");
echo $indexedArray[array_rand($indexedArray)];
?>
array random php
<?php
$indexedArray = array("red", "blue", "green", "black");
echo $indexedArray[array_rand($indexedArray)];
?>
Generate Random String in PHP
phpCopy<?php
$Random_str = uniqid();
echo "Random String:", $Random_str, "\n";
?>
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>";
?>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us