Skip to content

Instantly share code, notes, and snippets.

@ilyasozkurt
Created February 19, 2023 12:33
Show Gist options
  • Save ilyasozkurt/36a168c9850303765d21478d8288e6fc to your computer and use it in GitHub Desktop.
Save ilyasozkurt/36a168c9850303765d21478d8288e6fc to your computer and use it in GitHub Desktop.
<?php
$iterator = new DirectoryIterator('images/');
foreach ($iterator as $fileinfo) {
if ($fileinfo->isFile()) {
$extension = strtolower($fileinfo->getExtension());
if (in_array($extension, ['jpg', 'jpeg', 'png', 'gif', 'svg', 'webp'])) {
echo '<img src="images/' . $fileinfo->getFilename() . '" />';
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment