I am using WordPress. I have an image folder like mytheme/images/myimages
.
I want to retrieve all the images name from the folder myimages
Please advice me, how can I get images name.
I am using WordPress. I have an image folder like mytheme/images/myimages
.
I want to retrieve all the images name from the folder myimages
Please advice me, how can I get images name.
when you want to get all image from folder then use
glob()
built in function which help to get all image . But when you get all then sometime need to check that all is valid so in this case this code help you. this code will also check that it is imagefor more information
PHP Manual
Very fast because you only scan the needed directory.
Here is my some code