简体   繁体   中英

Randomly select file in PHP

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.

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);
}

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

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM