来自具有子目录的目录的多个随机包含

时间:2012-02-11 09:25:34

标签: php

我有一个包含子目录的目录,每个子目录包含一系列文件。我正在寻找一个脚本,它将查看子目录内部随机返回指定数量的文件。

有一些脚本可以搜索单个目录(不是子文件夹),还有一些脚本可以搜索子文件夹但只返回一个文件。

为了说明情况,返回的文件将作为li包含在旋转的横幅中。

提前感谢您的帮助,希望这是可能的。

我想我已经到了那里,而不是完全我想要实现的目标但工作得很好,可以说更好的目的,我正在使用以下功能:

<?php function RandomFile($folder='', $extensions='.*'){
   // fix path:
    $folder = trim($folder);
    $folder = ($folder == '') ? './' : $folder;

    // check folder:
    if (!is_dir($folder)){ die('invalid folder given!'); }

    // create files array
    $files = array();

    // open directory
    if ($dir = @opendir($folder)){

        // go trough all files:
        while($file = readdir($dir)){

            if (!preg_match('/^\.+$/', $file) and 
                preg_match('/\.('.$extensions.')$/', $file)){

                // feed the array:
                $files[] = $file;                
            }            
        }        
        // close directory
        closedir($dir);    
    }
    else {
        die('Could not open the folder "'.$folder.'"');
    }

    if (count($files) == 0){
        die('No files where found :-(');
    }

    // seed random function:
    mt_srand((double)microtime()*1000000);

    // get an random index:
    $rand = mt_rand(0, count($files)-1);

    // check again:
    if (!isset($files[$rand])){
        die('Array index was not found! very strange!');
    }

    // return the random file:
    return $folder . "/" . $files[$rand];

}


$random1 = RandomFile('project-banners/website-design');
while (!$random2 || $random2 == $random1) {
    $random2 = RandomFile('project-banners/logo-design');
}
while (!$random3 || $random3 == $random1 || $random3 == $random2) {
    $random3 = RandomFile('project-banners/design-for-print');
}
?>

将结果回显到容器中(在本例中为ul):

<?php include($random1) ;?>
<?php include($random2) ;?>
<?php include($random3) ;?>

感谢quickshiftin的帮助,但是它略高于我的技能水平。

有关我更改的原始脚本的信息,请访问:

http://randaclay.com/tips-tools/multiple-random-image-php-script/

1 个答案:

答案 0 :(得分:0)

每次擦洗文件系统以随机选择要显示的文件将非常慢。您应该提前索引目录结构。您可以采用多种方式,尝试简单的find command,或者如果您真的想使用PHP,我最喜欢的选择是RecursiveDirectoryIteratorRecursiveIteratorIterator

将所有结果放入一个文件中,并在选择要显示的文件时从那里读取。您可以使用行号作为索引,使用rand函数选择一行,从而选择要显示的文件。你可能想要考虑比rand更均匀分布的东西,你知道让广告商满意:)

编辑:

添加一个简单的真实示例:

// define the location of the portfolio directory
define('PORTFOLIO_ROOT', '/Users/quickshiftin/junk-php');
// and a place where we'll store the index
define('FILE_INDEX', '/tmp/porfolio-map.txt');

// if the index doesn't exist, build it
// (this doesn't take into account changes to the portfolio files)
if(!file_exists(FILE_INDEX))
    shell_exec('find ' . PORTFOLIO_ROOT . ' > ' . FILE_INDEX);

// read the index into memory (very slow but easy way to do this)
$aIndex = file(FILE_INDEX);

// randomly select an index
$iIndex = rand(0, count($aIndex) - 1);

// spit out the filename
var_dump(trim($aIndex[$iIndex]));