Как выбрать случайное слово из файла слов, разделенных запятыми?
$var = file_get_contents('the_file.txt'); //Take the contents from the file to the variable $result = explode(',',$var); //Split it by ',' echo = $result[array_rand($result)]; //Return a random entry from the array.
echo explode(',',file_get_contents('file.txt'))[rand(0,99)];
То есть это наименьшее количество кода.