Jump to content

Echo matching key in multidimention array


Peuplarchie

Recommended Posts

Good day to you all,

            I'm working on a piece of code which read a directory recursively and list them as an array.

 

What I'm trying to do here is to echo only the  ones with dir as "dir" as 4th key.

 

Can somebody help me i'm fairly new with arry, specificly multidimensional array.

 

Here is my code :


<?php
   $dir = "Art/";
   function recur_dir($dir)
   {
       $dirlist = opendir($dir);
       while ($file = readdir ($dirlist))
       {
           if ($file != '.' && $file != '..')
           {
               $newpath = $dir.'/'.$file;
               $level = explode('/',$newpath);
               if (is_dir($newpath))
               {
                   $mod_array[] = array(
                           'level'=>count($level)-1,
                           'path'=>$newpath,
                           'name'=>end($level),
                           'kind'=>'dir',
                           'mod_time'=>filemtime($newpath),
                           'content'=>recur_dir($newpath) );
               }else{ 
                   $mod_array[] = array(
                           'level'=>count($level)-1,
                           'path'=>$newpath,
                           'name'=>end($level),
                           'kind'=>'file',
                           'mod_time'=>filemtime($newpath),
                           'size'=>filesize($newpath) );
              }
           }
       }
       closedir($dirlist);
   
   ksort($mod_array);   
       return $mod_array;

$key = array_search('dir', $mod_array);    

   echo '<pre>';
   echo $key;
   echo '</pre>';
   
   }
   

?>

 

Thanks !

 

 

Link to comment
Share on other sites

Thanks !

That worked it out !

I understand more, but , here I'm using the array to store a recursive list of files and directories, I can"t seems to only see the file in level 3 let say, can you help me understand that ?

 


foreach ($mod_array as $key => $array)
{
  if ($array['level'] == '2')
  {
    echo $key;
  }
}

 

I can"t make it to work...

Thanks !

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.