Skip to content

Instantly share code, notes, and snippets.

@patrickmaciel
Last active November 10, 2015 17:19
Show Gist options
  • Save patrickmaciel/e957bd57df4d022f2475 to your computer and use it in GitHub Desktop.
Save patrickmaciel/e957bd57df4d022f2475 to your computer and use it in GitHub Desktop.
Snippet: PHP - Iterate specific file by extension - PHP
<?php
$iterator = new \GlobIterator(YOUR_PATH_HERE . '/*.xls', \FilesystemIterator::KEY_AS_FILENAME);
$array = iterator_to_array($iterator);
foreach ($array as $file) {
echo $file->getFileName() . '<br>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment