1
如何從逗號分隔的文字中挑選一個隨機單詞?從Php中的文本文件中選擇一個單詞?
如何從逗號分隔的文字中挑選一個隨機單詞?從Php中的文本文件中選擇一個單詞?
$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)];
即它的代碼量最少。
'echo = $ result [array_rand($ result)];' ? –