Skip to content

Instantly share code, notes, and snippets.

@eurowebpage
Created April 7, 2020 12:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eurowebpage/10744dd473bc22904773e87a10189925 to your computer and use it in GitHub Desktop.
Save eurowebpage/10744dd473bc22904773e87a10189925 to your computer and use it in GitHub Desktop.
afficher-images-PNG-uniquement
<?php
$dirname = "img/"; // répertoire
$images = glob($dirname."*.png");
foreach($images as $image) {
echo '<img src="'.$image.'" class="img-fluid" />';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment