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. Link to comment https://forums.phpfreaks.com/topic/249521-simple-php-page-with-folder-structure-and-nothing-more/ 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); Link to comment https://forums.phpfreaks.com/topic/249521-simple-php-page-with-folder-structure-and-nothing-more/#findComment-1281157 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.