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.
|
feedback
|
|
The lazy solution would be:
| |||
|
feedback
|
|
I tend to use DirectoryIterator for things like this which provides a simple method for ignoring dot files:
| |||
|
feedback
|
|
Assuming the hidden files start with a
Now you check for every item if there is no | |||
|
feedback
|