获取文件夹中的所有文件夹和图像列表

时间:2014-01-16 11:14:00

标签: php

图库文件夹中的目录是动态创建的。我正在尝试访问其中的文件夹和相应的图像。目前我访问的文件夹,但我没有在其中获取图像。如何循环所有图像corressponding到目录。 请帮我解决这个问题

 <?php
#default directory
$dir    = '../gallery/';
$files1 = scandir($dir);

#open a gallery directory 
if ($handle = opendir($dir)) {
#read all the directories inside a gallery folder
        while($file = readdir($handle)){

                        if($file !== '.' && $file !== '..'){
#get all images inside variable $file                           
                            echo '<img src="../gallery/'.$file.'/" border="0" height="100" width="150"/>';

                }    
        }


}

?>

1 个答案:

答案 0 :(得分:1)

foreach(glob("../gallery/".'*') as $filename) {
    echo '<img src="../gallery/'.basename($filename).'/" border="0" height="100" width="150"/>';
}