Created
September 19, 2012 23:18
-
-
Save codearmorygists/3752980 to your computer and use it in GitHub Desktop.
PHP list all files in directory
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function getDirectoryList ($directory) { | |
// create an array to hold directory list | |
$results = array(); | |
// create a handler for the directory | |
$handler = opendir($directory); | |
// open directory and walk through the filenames | |
while ($file = readdir($handler)) { | |
// if file isn't this directory or its parent, add it to the results | |
if ($file != "." && $file != "..") { | |
$results[] = $file; | |
} | |
} | |
// tidy up: close the handler | |
closedir($handler); | |
// done! | |
return $results; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment