2011-10-26 12 views

答えて

3
$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. 
+0

'echo = $ result [array_rand($ result)];' ? –

1
echo explode(',',file_get_contents('file.txt'))[rand(0,99)]; 

関連する問題