Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Created May 31, 2013 14:43
Show Gist options
  • Save jlittlejohn/5685457 to your computer and use it in GitHub Desktop.
Save jlittlejohn/5685457 to your computer and use it in GitHub Desktop.
PHP: glob Function
<?php
/* Find all image files in image folder */
$images = glob($imagePath.'*.{gif,jpeg,jpg,png}',GLOB_BRACE);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment