The solution using the fewest lines of code isn't always the most efficient if by efficient you mean fastest.
I tested the solutions given by some other answers in this thread in my /usr/lib directory, which contains 394 files. I ran each test 1000 times.
edit: I ran new tests after reading @Alix's comments, and after @lamas's solution changed.
- Time for @Kagee's solution: foreach(glob()) = 12.4 sec
- Time for @Matchu's solution: glob() = 8.1 sec
- Time for @Kagee's solution: foreach(glob(GLOB_NOSORT)) = 6.4 sec
- Time for @Alix Axel's solution: scandir() = 6.5 sec
- Time for @Alix Axel's solution: array_diff(scandir()) = 6.4 sec
- Time for @Kagee's solution: readdir() = 5.3 sec
- Time for @markb's solution: readdir() = 5.2 sec
- Time for @Matchu's solution: glob(GLOB_NOSORT) = 2.2 sec
- Time for @lamas's solution: readdir() = 1.2 sec
Below is the script I used to test, so you can try it yourself:
<?php
$n = 1000;
$start = microtime(true);
$files = array();
for ($i = 0; $i < $n; ++$i) {
foreach(glob('*') as $file_or_dir) {
if( !is_dir($file_or_dir) ) // is_dir will match . and ..
{
$files[] = $file_or_dir;
}
}
}
$end = microtime(true);
echo "Time for @Kagee's solution: foreach(glob()) = " . ($end-$start) . "\n";
$start = microtime(true);
for ($i = 0; $i < $n; ++$i) {
$files = glob('*');
}
$end = microtime(true);
echo "Time for @Matchu's solution: glob() = " . ($end-$start) . "\n";
$start = microtime(true);
$files = array();
for ($i = 0; $i < $n; ++$i) {
foreach(glob('*', GLOB_NOSORT) as $file_or_dir) {
if( !is_dir($file_or_dir) ) // is_dir will match . and ..
{
$files[] = $file_or_dir;
}
}
}
$end = microtime(true);
echo "Time for @Kagee's solution: foreach(glob(GLOB_NOSORT)) = " . ($end-$start) . "\n";
$start = microtime(true);
for ($i = 0; $i < $n; ++$i) {
$files = scandir('.');
$result = array();
foreach ($files as $file)
{
if (($file == '.') || ($file == '..'))
{
continue;
}
$result[] = $file;
}
}
$end = microtime(true);
echo "Time for @Alix Axel's solution: scandir() = " . ($end-$start) . "\n";
$start = microtime(true);
for ($i = 0; $i < $n; ++$i) {
$files = array_diff(scandir('.'), array('.', '..'));
}
$end = microtime(true);
echo "Time for @Alix Axel's solution: array_diff(scandir()) = " . ($end-$start) . "\n";
$start = microtime(true);
for ($i = 0; $i < $n; ++$i) {
$files = array();
$dir = opendir('.');
while(($myfile = readdir($dir)) !== false)
{
if( !is_dir($myfile) )
{
$files[] = $myfile;
}
}
closedir($dir);
}
$end = microtime(true);
echo "Time for @Kagee's solution: readdir() = " . ($end-$start) . "\n";
$start = microtime(true);
for ($i = 0; $i < $n; ++$i) {
$files = array();
$dir = opendir('.');
while(($myfile = readdir($dir)) !== false)
{
if( is_file($myfile) )
{
$files[] = $myfile;
}
}
closedir($dir);
}
$end = microtime(true);
echo "Time for @markb's solution: readdir() = " . ($end-$start) . "\n";
$start = microtime(true);
for ($i = 0; $i < $n; ++$i) {
$files = glob('*', GLOB_NOSORT);
}
$end = microtime(true);
echo "Time for @Matchu's solution: glob(GLOB_NOSORT) = " . ($end-$start) . "\n";
$start = microtime(true);
for ($i = 0; $i < $n; ++$i) {
$files = array();
$dir = opendir('.');
while(($currentFile = readdir($dir)) !== false)
{
if ( $currentFile == '.' or $currentFile == '..' )
{
continue;
}
$files[] = $currentFile;
}
closedir($dir);
}
$end = microtime(true);
echo "Time for @lamas's solution: readdir() = " . ($end-$start) . "\n";