blufish Posted July 19, 2008 Share Posted July 19, 2008 I want to know how to select a random file from a folder like http://www.frozenoven.com/jokes/ is this possible? do I need a list of all the files in the folder? If I need the list how do you do it? Thanks in advance! Link to comment https://forums.phpfreaks.com/topic/115536-solved-select-a-random-file-from-a-folder/ Share on other sites More sharing options...
ratcateme Posted July 19, 2008 Share Posted July 19, 2008 use the code from this http://php.net/manual/en/function.readdir.php to read the dir into a array then use shuffle() and take the first one on the array as your random file. Scott. Link to comment https://forums.phpfreaks.com/topic/115536-solved-select-a-random-file-from-a-folder/#findComment-593930 Share on other sites More sharing options...
blufish Posted July 19, 2008 Author Share Posted July 19, 2008 I looked at it it seems a little difficult, if I used while (false !== ($file = readdir($handle))) { echo "$file\n"; } Would it print out a list of all the files in the directory? Link to comment https://forums.phpfreaks.com/topic/115536-solved-select-a-random-file-from-a-folder/#findComment-593933 Share on other sites More sharing options...
PFMaBiSmAd Posted July 19, 2008 Share Posted July 19, 2008 Actually the glob() function will get a list of files directly into an array for you, that you could then process as ratcateme mentioned. Link to comment https://forums.phpfreaks.com/topic/115536-solved-select-a-random-file-from-a-folder/#findComment-593941 Share on other sites More sharing options...
Lodius2000 Posted July 19, 2008 Share Posted July 19, 2008 try $file = glob(handle); shuffle($file); echo $file[0]; Link to comment https://forums.phpfreaks.com/topic/115536-solved-select-a-random-file-from-a-folder/#findComment-594018 Share on other sites More sharing options...
cooldude832 Posted July 19, 2008 Share Posted July 19, 2008 maybe u should look into a databse if you are using flat files to store single "jokes" as u call it. Or even a modified flat file database. Link to comment https://forums.phpfreaks.com/topic/115536-solved-select-a-random-file-from-a-folder/#findComment-594023 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.