Jump to content

[SOLVED] sorting an array problem, (array/string manipulation)


dsaba

Recommended Posts

Hi!

I have a function that I found on google, that goes through a directory and spits out a directory tree in an array, with arrays inside of arrays, and more and more arrays inside of arrays, depending on how many subdirectories are there.....

 

Here is a sample "directory tree" it spits out. My problem is wanting to be able to create a new array containing only the paths to all the subdirectories it finds from this array, so it is with array manipulation...

Not all paths are located in the topmost array's values, but some directories are within other subdirectories and so forth.. I'm stumped on how exactly to sort through this array, whether recursively or not to grab all the 'paths' in the array period.

 

Array
(
    [0] => Array
        (
            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/buildgallery.php
            [name] => buildgallery.php
            [extension] => php
            [size] => 15678
            [kind] => file
        )

    [1] => Array
        (
            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/gallery.xml
            [name] => gallery.xml
            [extension] => xml
            [size] => 1014
            [kind] => file
        )

    [2] => Array
        (
            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/images
            [name] => images
            [kind] => directory
            [content] => Array
                (
                    [0] => Array
                        (
                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/images/1218569987_2f01a4dad1.jpg
                            [name] => 1218569987_2f01a4dad1.jpg
                            [extension] => jpg
                            [size] => 134431
                            [kind] => file
                        )

                    [1] => Array
                        (
                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/images/1218570621_27ab934411.jpg
                            [name] => 1218570621_27ab934411.jpg
                            [extension] => jpg
                            [size] => 142130
                            [kind] => file
                        )

                    [2] => Array
                        (
                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/images/1218613725_a3de4e7925.jpg
                            [name] => 1218613725_a3de4e7925.jpg
                            [extension] => jpg
                            [size] => 109418
                            [kind] => file
                        )

                    [3] => Array
                        (
                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/images/827063.jpg
                            [name] => 827063.jpg
                            [extension] => jpg
                            [size] => 22388
                            [kind] => file
                        )

                    [4] => Array
                        (
                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/images/827064.jpg
                            [name] => 827064.jpg
                            [extension] => jpg
                            [size] => 24341
                            [kind] => file
                        )

                    [5] => Array
                        (
                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/images/827070.jpg
                            [name] => 827070.jpg
                            [extension] => jpg
                            [size] => 33211
                            [kind] => file
                        )

                    [6] => Array
                        (
                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/images/827074.jpg
                            [name] => 827074.jpg
                            [extension] => jpg
                            [size] => 24018
                            [kind] => file
                        )

                    [7] => Array
                        (
                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/images/827115.jpg
                            [name] => 827115.jpg
                            [extension] => jpg
                            [size] => 20129
                            [kind] => file
                        )

                    [8] => Array
                        (
                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/images/8903jlfgdf.JPG
                            [name] => 8903jlfgdf.JPG
                            [extension] => JPG
                            [size] => 16645
                            [kind] => file
                        )

                    [9] => Array
                        (
                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/images/girls_in_the_IDF.jpg
                            [name] => girls_in_the_IDF.jpg
                            [extension] => jpg
                            [size] => 56210
                            [kind] => file
                        )

                    [10] => Array
                        (
                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/images/photo_2576_20070228.jpg
                            [name] => photo_2576_20070228.jpg
                            [extension] => jpg
                            [size] => 68344
                            [kind] => file
                        )

                    [11] => Array
                        (
                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/images/photo_8348_20070814.jpg
                            [name] => photo_8348_20070814.jpg
                            [extension] => jpg
                            [size] => 682914
                            [kind] => file
                        )

                    [12] => Array
                        (
                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/images/Thumbs.db
                            [name] => Thumbs.db
                            [extension] => db
                            [size] => 50688
                            [kind] => file
                        )

                )

        )

    [3] => Array
        (
            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/index.html
            [name] => index.html
            [extension] => html
            [size] => 1304
            [kind] => file
        )

    [4] => Array
        (
            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links
            [name] => links
            [kind] => directory
            [content] => Array
                (
                    [0] => Array
                        (
                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/buildgallery.php
                            [name] => buildgallery.php
                            [extension] => php
                            [size] => 15678
                            [kind] => file
                        )

                    [1] => Array
                        (
                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/clock.php
                            [name] => clock.php
                            [extension] => php
                            [size] => 11918
                            [kind] => file
                        )

                    [2] => Array
                        (
                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/gallery.xml
                            [name] => gallery.xml
                            [extension] => xml
                            [size] => 1014
                            [kind] => file
                        )

                    [3] => Array
                        (
                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/getanotherDir.php
                            [name] => getanotherDir.php
                            [extension] => php
                            [size] => 41148
                            [kind] => file
                        )

                    [4] => Array
                        (
                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/images
                            [name] => images
                            [kind] => directory
                            [content] => Array
                                (
                                    [0] => Array
                                        (
                                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/images/1218569987_2f01a4dad1.jpg
                                            [name] => 1218569987_2f01a4dad1.jpg
                                            [extension] => jpg
                                            [size] => 134431
                                            [kind] => file
                                        )

                                    [1] => Array
                                        (
                                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/images/1218570621_27ab934411.jpg
                                            [name] => 1218570621_27ab934411.jpg
                                            [extension] => jpg
                                            [size] => 142130
                                            [kind] => file
                                        )

                                    [2] => Array
                                        (
                                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/images/1218613725_a3de4e7925.jpg
                                            [name] => 1218613725_a3de4e7925.jpg
                                            [extension] => jpg
                                            [size] => 109418
                                            [kind] => file
                                        )

                                    [3] => Array
                                        (
                                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/images/827063.jpg
                                            [name] => 827063.jpg
                                            [extension] => jpg
                                            [size] => 22388
                                            [kind] => file
                                        )

                                    [4] => Array
                                        (
                                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/images/827064.jpg
                                            [name] => 827064.jpg
                                            [extension] => jpg
                                            [size] => 24341
                                            [kind] => file
                                        )

                                    [5] => Array
                                        (
                                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/images/827070.jpg
                                            [name] => 827070.jpg
                                            [extension] => jpg
                                            [size] => 33211
                                            [kind] => file
                                        )

                                    [6] => Array
                                        (
                                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/images/827074.jpg
                                            [name] => 827074.jpg
                                            [extension] => jpg
                                            [size] => 24018
                                            [kind] => file
                                        )

                                    [7] => Array
                                        (
                                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/images/827115.jpg
                                            [name] => 827115.jpg
                                            [extension] => jpg
                                            [size] => 20129
                                            [kind] => file
                                        )

                                    [8] => Array
                                        (
                                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/images/8903jlfgdf.JPG
                                            [name] => 8903jlfgdf.JPG
                                            [extension] => JPG
                                            [size] => 16645
                                            [kind] => file
                                        )

                                    [9] => Array
                                        (
                                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/images/girls_in_the_IDF.jpg
                                            [name] => girls_in_the_IDF.jpg
                                            [extension] => jpg
                                            [size] => 56210
                                            [kind] => file
                                        )

                                    [10] => Array
                                        (
                                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/images/photo_2576_20070228.jpg
                                            [name] => photo_2576_20070228.jpg
                                            [extension] => jpg
                                            [size] => 68344
                                            [kind] => file
                                        )

                                    [11] => Array
                                        (
                                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/images/photo_8348_20070814.jpg
                                            [name] => photo_8348_20070814.jpg
                                            [extension] => jpg
                                            [size] => 682914
                                            [kind] => file
                                        )

                                    [12] => Array
                                        (
                                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/images/Thumbs.db
                                            [name] => Thumbs.db
                                            [extension] => db
                                            [size] => 22528
                                            [kind] => file
                                        )

                                )

                        )

                    [5] => Array
                        (
                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/index.html
                            [name] => index.html
                            [extension] => html
                            [size] => 1304
                            [kind] => file
                        )

                    [6] => Array
                        (
                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/output.php
                            [name] => output.php
                            [extension] => php
                            [size] => 2668
                            [kind] => file
                        )

                    [7] => Array
                        (
                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/anotherDir
                            [name] => anotherDir
                            [kind] => directory
                            [content] => Array
                                (
                                    [0] => Array
                                        (
                                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/anotherDir/badanotherDir.txt
                                            [name] => badanotherDir.txt
                                            [extension] => txt
                                            [size] => 12057
                                            [kind] => file
                                        )

                                    [1] => Array
                                        (
                                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/anotherDir/freshanotherDir.txt
                                            [name] => freshanotherDir.txt
                                            [extension] => txt
                                            [size] => 2490
                                            [kind] => file
                                        )

                                    [2] => Array
                                        (
                                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/anotherDir/log.txt
                                            [name] => log.txt
                                            [extension] => txt
                                            [size] => 0
                                            [kind] => file
                                        )

                                    [3] => Array
                                        (
                                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/anotherDir/oldanotherDir.txt
                                            [name] => oldanotherDir.txt
                                            [extension] => txt
                                            [size] => 2512
                                            [kind] => file
                                        )

                                )

                        )

                    [8] => Array
                        (
                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/swfobject.js
                            [name] => swfobject.js
                            [extension] => js
                            [size] => 6364
                            [kind] => file
                        )

                    [9] => Array
                        (
                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/thumbs
                            [name] => thumbs
                            [kind] => directory
                            [content] => Array
                                (
                                    [0] => Array
                                        (
                                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/thumbs/115-1503_IMG.jpg
                                            [name] => 115-1503_IMG.jpg
                                            [extension] => jpg
                                            [size] => 2347
                                            [kind] => file
                                        )

                                    [1] => Array
                                        (
                                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/thumbs/Thumbs.db
                                            [name] => Thumbs.db
                                            [extension] => db
                                            [size] => 5632
                                            [kind] => file
                                        )

                                )

                        )

                    [10] => Array
                        (
                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/links/viewer.swf
                            [name] => viewer.swf
                            [extension] => swf
                            [size] => 17052
                            [kind] => file
                        )

                )

        )

    [5] => Array
        (
            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/swfobject.js
            [name] => swfobject.js
            [extension] => js
            [size] => 6364
            [kind] => file
        )

    [6] => Array
        (
            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/thumbs
            [name] => thumbs
            [kind] => directory
            [content] => Array
                (
                    [0] => Array
                        (
                            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/thumbs/115-1503_IMG.jpg
                            [name] => 115-1503_IMG.jpg
                            [extension] => jpg
                            [size] => 2347
                            [kind] => file
                        )

                )

        )

    [7] => Array
        (
            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/Thumbs.db
            [name] => Thumbs.db
            [extension] => db
            [size] => 8192
            [kind] => file
        )

    [8] => Array
        (
            [path] => C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/website/Mirrors/remote package/root/viewer.swf
            [name] => viewer.swf
            [extension] => swf
            [size] => 17052
            [kind] => file
        )

)

 

*edit i'm trying to grab all the 'kind' of 'directory' no matter how deep they are of inside of inside other arrays, how deep I have to look is the part that stumps me, for example, I could look inside 3 times, into 3 different arrays if I know the specific tree structure, but most of the time I won't but will still want to look through it all somehow and grab all the subdirectories paths

 

Thanks for reading!

Link to comment
Share on other sites

function ListDescendantDirectories($dir){  
     if ($handle = opendir($dir)){  
          $output = array();  
          while (false !== ($item = readdir($handle))){  
               if (is_dir($dir.'/'.$item) and $item != "." and $item != ".."){  
                    $output[] = $dir.'/'.$item;  
                    $output = array_merge($output, ListDescendantDirectories($dir.'/'.$item));  
               }  
          }  
          closedir($handle);  
          return $output;  
     }else{  
          return false;  
     }  
}

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.