I have now the following code:

$files = scandir($imagepath);

But when i display the images i also get hidden files. I want to excluse those hidden files.

Thanks in advance.

link|improve this question

feedback

3 Answers

up vote 0 down vote accepted

The lazy solution would be:

 $files = preg_grep('/^([^.])/', scandir($imagepath));
link|improve this answer
feedback

I tend to use DirectoryIterator for things like this which provides a simple method for ignoring dot files:

$path = '/your/path';
foreach (new DirectoryIterator($path) as $fileInfo) {
    if($fileInfo->isDot()) continue;
    $file =  $path.$fileInfo->getFilename();
}
link|improve this answer
feedback

Assuming the hidden files start with a . you can do something like this when outputting:

foreach($files as $file) {
    if(strpos($file, '.') !== (int) 0) {
        echo $file;
    }
}

Now you check for every item if there is no . as the first character, and if not it echos you like you would do.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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