Jump to content

Recommended Posts

Hi

 

im trying to use glob to make an array of all files in a given directory but ignore other folders

 

can i do

 

glob('path/to/folder/*.*')

 

assuming there are no . characters in a the folder names this would return only files with any extension in the directory

 

is there a better way to do this?

Link to comment
https://forums.phpfreaks.com/topic/116665-solved-using-glob/
Share on other sites

That should work.  I mean, you could probably do something like:

 

foreach (glob('path/to/folder/*', GLOB_MARK) as $v) {

        if (substr($v, -1) === '/') {

                continue;

        }

        //do some work here

}           

Link to comment
https://forums.phpfreaks.com/topic/116665-solved-using-glob/#findComment-599838
Share on other sites

so could i take it further and do

 

foreach (glob('path/to/folder/*', GLOB_MARK) as $v) {

      foreach((substr($v, -1) === '/') as $dir) {

                unset($dir);//this would only unset the directories in the array

        }

        //print out remaining array elements in another foreach loop (array elements will be images)

}           

 

is that right?

Link to comment
https://forums.phpfreaks.com/topic/116665-solved-using-glob/#findComment-599884
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.