Glese Posted October 21, 2011 Share Posted October 21, 2011 I'm trying to showcase the folder structure of a folder contained with jpg files on a simple PHP web document. I'm looking into an automatic system, so that every time I add another photo to the folder on the web server the ascend name becomes visible on the web document. Any suggestions? P.S.: I'm just starting out, thus the vague question. Quote Link to comment Share on other sites More sharing options...
Adam Posted October 21, 2011 Share Posted October 21, 2011 glob will return you a sorted list of files matching a simple pattern. For example: $images = glob('*.jpg'); If you want to make the pattern a little more flexible you can use the "GLOB_BRACE" flag: $images = glob('{*.jpg, *.jpeg}', GLOB_BRACE); Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.