Skip to content

Instantly share code, notes, and snippets.

@keegandonley
Created August 12, 2015 05:59
Show Gist options
  • Save keegandonley/1f63888cd02de3faf32c to your computer and use it in GitHub Desktop.
Save keegandonley/1f63888cd02de3faf32c to your computer and use it in GitHub Desktop.
Return list of files in a directory
<?php
$images = array();
$dir = opendir('../img/easyPhotoGallery/');
while (($file = readdir($dir)) !== false)
{
if (substr($file,0,1) !== ".") { //Ignore system files
$images[] = $file;
}
}
closedir($dir);
echo json_encode($images);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment