Related questions
$input = array("Hello", "Nihao", "from Ukraine", "evening in the hut"); $rand_keys = array_rand($input, 1); echo $input[$rand_keys];
$a = array("Hello", "Hi", "Ciao"); echo $a[rand(0, count($a))];
Find more questions by tags PHP