从随机文件夹创建图像列表

发布于 2024-11-14 01:16:11 字数 845 浏览 2 评论 0 原文

我有下面的 PHP 代码,我想在一些帮助下对其进行一些修改。

我需要根据指向特定文件夹的 URL(使用表达式引擎)生成图像列表。

目前这段代码工作得很好,但我需要它做另外两件事...

  1. 如果找不到文件夹,则向上移动文件夹... 例如,如果它找不到目录/子目录,它将关闭并在目录中搜索。(这显然需要在某个级别停止)

  2. 生成文件夹中所有图像的列表,而不仅仅是像下面这样的图像.

    <前><代码>isFile() && !preg_match('/-c\.jpg$/', $fileinfo->getFilename())) { $bgimagearray[] = "'" 。 $fileinfo->getFilename() 。 “'”; } } $bgimage = array_rand($bgimagearray); ?>
    " alt="{last_segment}" //>

I have this PHP code below that i would like to adapt a little with some help.

I need to produce a list of images based on the URL pointing to a specific folder (using expression engine).

Currently this code works really well but i need it to do two more things...

  1. To move up a folder if it doesn't find one...
    e.g if it doesn't find directory/subdirectory it will go off and search in directory instead.(this would need to stop obviously at a certain level)

  2. Produce a list of all images in the folder, not just one like below.

    <?php
    
    $bgimagearray = array();
    $iterator = new DirectoryIterator("sites/domain.co.uk/public_html/assets/images/bg-images/{last_segment}");
    foreach ($iterator as $fileinfo) {
        if ($fileinfo->isFile() && !preg_match('/-c\.jpg$/', $fileinfo->getFilename())) {
            $bgimagearray[] = "'" . $fileinfo->getFilename() . "'";
        }
    }
    
    $bgimage = array_rand($bgimagearray);
    ?>
    
    
    <div id="backgroundImage"> 
            <img src="{site_url}assets/images/bg-images/{last_segment}/<?php echo trim($bgimagearray[$bgimage], "'"); ?>" alt="{last_segment}" />
    </div>
    

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哽咽笑 2024-11-21 01:16:11

对于第一个问题,您可以使用dirname php function。对于另一个问题,即获取所有文件而不是一个文件,您已经在 $bgimagearray 中拥有整个数组,因此您可以使用 foreach

On the first issue, you can use dirname php function. For the other issue, the one of getting all the files instead of one, you already have the whole array in $bgimagearray, so you can iterate it with a foreach.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文