vote up 0 vote down star

I have a folder structure like this:

/articles
     .index.php
     .second.php
     .third.php
     .fourth.php

If I'm writing my code in second.php, how can I scan the current folder(articles)?

Thanks

flag

what version of PHP? – dnagirl Oct 29 at 19:47

5 Answers

vote up 5 vote down check
$files = glob(dirname(__FILE__) . "/*.php");

http://php.net/manual/en/function.glob.php

link|flag
vote up 2 vote down

From the PHP manual:

$dir = new DirectoryIterator(dirname($path));
foreach ($dir as $fileinfo) {
    if (!$fileinfo->isDot()) {
        var_dump($fileinfo->getFilename());
    }
}
link|flag
vote up 2 vote down
<?php

$path = new DirectoryIterator('/articles');

foreach ($path as $file) {
    echo $file->getFilename() . "\t";
    echo $file->getSize() . "\t";
    echo $file->getOwner() . "\t";
    echo $file->getMTime() . "\n";
}

?>

From The Standard PHP Library (SPL)

link|flag
vote up 1 vote down

It depends on what you mean by 'scan' I'm assuming you want to do something like this:

$dir_handle = opendir(".");

 while($file = readdir($dir_handle)){
      //do stuff with $file
 }
link|flag
this is great too ;) thanks guys – kmunky Oct 29 at 20:05
vote up 0 vote down
foreach (scandir('.') as $file)
    echo $file . "\n";
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.