Like, we have folder /images/, it has some files inside.
And the script /scripts/listing.php
How can we get names of the all files inside folder /images/, in listing.php?
Thanks.
|
|
See: readdir() |
|||
|
|
|
|
|||||
|
|
Using either
|
|||
|
|
|
Here is a method using the SPL DirectoryIterator class :
|
|||
|
|
|
just extending on Enrico's post, theres also some checks/modifications you need to do.
And the usage like so:
This will get you a list like so:
hoep this helps. |
|||||||
|