Skip to content

Instantly share code, notes, and snippets.

@igorw
Created February 15, 2011 12:08
Show Gist options
  • Save igorw/827441 to your computer and use it in GitHub Desktop.
Save igorw/827441 to your computer and use it in GitHub Desktop.
<?php
$dir = new FilesystemIterator(__DIR__);
foreach ($dir as $path => $fileinfo) {
if ($fileinfo->isFile()) {
var_dump($path);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment