Skip to content

Instantly share code, notes, and snippets.

@rodrigograca31
Last active June 29, 2016 16:54
Show Gist options
  • Save rodrigograca31/ff2c306d88981c7d2870893564d9f73d to your computer and use it in GitHub Desktop.
Save rodrigograca31/ff2c306d88981c7d2870893564d9f73d to your computer and use it in GitHub Desktop.
PHP File enumeration, ordered and no path
<?php
header('Content-Type: application/json');
$files = glob('./imgs/*.jpg');
foreach($files as &$file) {
$file = str_replace("./imgs/", "", $file);
}
sort($files);
echo json_encode($files);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment