Answers for "php random string from list"

PHP
4

choose a random word from an array php

$items = array(1, 2, 3, 4, 5);
echo $items[array_rand($items)];
Posted by: Guest on June-27-2020
0

Generate Random String in PHP

phpCopy<?php 
$Random_str = uniqid();  
echo "Random String:", $Random_str, "\n";
?>
Posted by: Guest on April-23-2021

Code answers related to "php random string from list"

Browse Popular Code Answers by Language