Skip to content

Instantly share code, notes, and snippets.

@kwylez
Created February 3, 2011 16:12
Show Gist options
  • Save kwylez/809692 to your computer and use it in GitHub Desktop.
Save kwylez/809692 to your computer and use it in GitHub Desktop.
<?php
$dir = ".";
if (is_dir($dir)) {
if ($dh = opendir($dir)) {
while (($file = readdir($dh)) !== false) {
echo "filename: $file : filetype: " . filetype($dir . $file) . "\n";
}
closedir($dh);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment