jlittlejohn
5/31/2013 - 2:43 PM

PHP: glob Function

PHP: glob Function

<?php
  /* Find all image files in image folder */
  $images = glob($imagePath.'*.{gif,jpeg,jpg,png}',GLOB_BRACE);
?>