读取目录中的所有文件和 return 中的列表 php

Read all files in a directory and return a list in php

我可以使用 scandir 获取文件,但它们显示起来很难看:

Array ( [0] => . [1] => .. [2] => jan-spaceship.jpg [3] => jan-tychostation.jpg [4] => johan-mars.jpg [5] => mary-132786.jpg [6] => mary-mars.jpg )

我想要的是带有名称的自定义 div,甚至可以显示图片(都是图片)。是否可以使用 foreach 循环或 for 循环?

我已经找到一个答案:

        $fileList = glob('uploads/*');

    //Loop through the array that glob returned.
    foreach($fileList as $filename){
       //Simply print them out onto the screen.
       echo $filename, '<br>'; 
    }