Jump to content

Simple PHP Page with Folder Structure and Nothing More


Glese

Recommended Posts

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
Share on other sites

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.