Skip to content

Instantly share code, notes, and snippets.

@bshevchenko
Created August 26, 2013 13:31
Show Gist options
  • Save bshevchenko/6341430 to your computer and use it in GitHub Desktop.
Save bshevchenko/6341430 to your computer and use it in GitHub Desktop.
getting files from directory 'media' with 'jpg' extension
<?php
$jpg_files = array_filter(scandir('media'), function($var){
return (substr($var, 0, -4) == '.jpg');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment