views:

64

answers:

3

I'd like to use the 'include' keyword in php to randomly select a file from a folder and output the contents. How would I do this?

Thanks.

A: 

glob() would read filenames into array.
and then you can shuffle this array and pick a random item.

Col. Shrapnel
A: 

use glob to get an array of files. shuffle the array. array_shift the first file off of the array. Include it.

Galen
+3  A: 

Assuming you know the folder where the files are and that the files are PHP files:

$phpFiles = glob('/path/to/files/*.php');

if (empty($phpFiles) === false)
{
    $randomFile = $phpFiles[array_rand($phpFiles)];
    include($randomFile);
}
Alix Axel