Skip to content

Instantly share code, notes, and snippets.

@ilyasozkurt
Created February 19, 2023 12:32
Show Gist options
  • Save ilyasozkurt/7ea331ff085928fa4fc78411a3ebb8aa to your computer and use it in GitHub Desktop.
Save ilyasozkurt/7ea331ff085928fa4fc78411a3ebb8aa to your computer and use it in GitHub Desktop.
<?php
$files = scandir('images/');
foreach ($files as $file) {
$extension = strtolower(pathinfo($file, PATHINFO_EXTENSION));
if (in_array($extension, ['jpg', 'jpeg', 'png', 'gif', 'svg', 'webp'])) {
echo '<img src="images/' . $file . '" />';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment