How to display the image from a specified directory? like i want to display all the png images from a directory, in my case my directory is media/images/iconized.
I tried to look around but seems none of them fits what i really needed.
But here's my try.
$dirname = "media/images/iconized/";
$images = scandir($dirname);
$ignore = Array(".", "..");
foreach($images as $curimg){
if(!in_array($curimg, $ignore)) {
echo "<img src='media/images/iconized/$curimg' /><br>
";
}
}
hope someone here could help. Im open in any ideas, recommendation and suggestion, thank you.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…