array probleme mal wieder

hups1803

Erfahrenes Mitglied
hallo,

ich habe hier ein script,

Code:
// ------------ lixlpixel recursive PHP functions -------------
// scan_directory_recursively( directory to scan, filter )
// expects path to directory and optional an extension to filter
// of course PHP has to have the permissions to read the directory
// you specify and all files and folders inside this directory
// ------------------------------------------------------------

// to use this function to get all files and directories in an array, write:
// $filestructure = scan_directory_recursively('path/to/directory');

// to use this function to scan a directory and filter the results, write:
// $fileselection = scan_directory_recursively('directory', 'extension');

function scan_directory_recursively($directory, $filter=FALSE)
{
	// if the path has a slash at the end we remove it here
	if(substr($directory,-1) == '/')
	{
		$directory = substr($directory,0,-1);
	}

	// if the path is not valid or is not a directory ...
	if(!file_exists($directory) || !is_dir($directory))
	{
		// ... we return false and exit the function
		return FALSE;

	// ... else if the path is readable
	}elseif(is_readable($directory))
	{
		// initialize directory tree variable
		$directory_tree = array();

		// we open the directory
		$directory_list = opendir($directory);

		// and scan through the items inside
		while (FALSE !== ($file = readdir($directory_list)))
		{
			// if the filepointer is not the current directory
			// or the parent directory
			if($file != '.' && $file != '..')
			{
				// we build the new path to scan
				$path = $directory.'/'.$file;

				// if the path is readable
				if(is_readable($path))
				{
					// we split the new path by directories
					$subdirectories = explode('/',$path);

					// if the new path is a directory
					if(is_dir($path))
					{
						// add the directory details to the file list
						$directory_tree[] = array(
							'path'    => $path,
							'name'    => end($subdirectories),
							'kind'    => 'directory',

							// we scan the new path by calling this function
							'content' => scan_directory_recursively($path, $filter));

					// if the new path is a file
					}elseif(is_file($path))
					{
						// get the file extension by taking everything after the last dot
						$extension = end(explode('.',end($subdirectories)));

						// if there is no filter set or the filter is set and matches
						if($filter === FALSE || $filter == $extension)
						{
							// add the file details to the file list
							$directory_tree[] = array(
								'path'      => $path,
								'name'      => end($subdirectories),
								'extension' => $extension,
								'size'      => filesize($path),
								'kind'      => 'file');
						}
					}
				}
			}
		}
		// close the directory
		closedir($directory_list);

		// return file list
		return $directory_tree;

	// if the path is not readable ...
	}else{
		// ... we return false
		return FALSE;
	}
}
// ------------------------------------------------------------
//$fileselection = scan_directory_recursively('./', 'php');
$fileselection = scan_directory_recursively('./', 'extension');


echo $fileselection;

ich weiss nicht wie ich dieses aufrufen muss es kommt immer array raus.

Code:
foreach($fileselection as $file) { 
echo $file;
}

****t auch nicht .
 
Die Einträge in $directory_tree bestehen nun mal auch aus Arrays, mit eventuellen Unterarrays und Unterarrays und ... .

Mach mal
PHP:
$arrDirscan = scan_directory_recursively( $strPath );
echo '<pre>' . print_r( $arrDirscan, true ) . '</pre>';
und schau dir den Aufbau an.

Gruß

p.s.: Schreib PHP-Quellcode bitte in PHP-Tags!
 
Zuletzt bearbeitet:
jo nun seh ich das array

PHP:
Array
(
    [0] => Array
        (
            [path] => ./files
            [name] => files
            [kind] => directory
            [content] => Array
                (
                    [0] => Array
                        (
                            [path] => ./files/crop_uploader
                            [name] => crop_uploader
                            [kind] => directory
                            [content] => Array
                                (
                                    [0] => Array
                                        (
                                            [path] => ./files/crop_uploader/class.upload.php
                                            [name] => class.upload.php
                                            [extension] => php
                                            [size] => 265209
                                            [kind] => file
                                        )

                                    [1] => Array
                                        (
                                            [path] => ./files/crop_uploader/crop.php
                                            [name] => crop.php
                                            [extension] => php
                                            [size] => 1763
                                            [kind] => file
                                        )

                                    [2] => Array
                                        (
                                            [path] => ./files/crop_uploader/index.php
                                            [name] => index.php
                                            [extension] => php
                                            [size] => 5806
                                            [kind] => file
                                        )

                                    [3] => Array
                                        (
                                            [path] => ./files/crop_uploader/jcrop
                                            [name] => jcrop
                                            [kind] => directory
                                            [content] => Array
                                                (
                                                    [0] => Array
                                                        (
                                                            [path] => ./files/crop_uploader/jcrop/demos.css
                                                            [name] => demos.css
                                                            [extension] => css
                                                            [size] => 406
                                                            [kind] => file
                                                        )

                                                    [1] => Array
                                                        (
                                                            [path] => ./files/crop_uploader/jcrop/Jcrop.gif
                                                            [name] => Jcrop.gif
                                                            [extension] => gif
                                                            [size] => 329
                                                            [kind] => file
                                                        )

                                                    [2] => Array
                                                        (
                                                            [path] => ./files/crop_uploader/jcrop/jquery.Jcrop.css
                                                            [name] => jquery.Jcrop.css
                                                            [extension] => css
                                                            [size] => 748
                                                            [kind] => file
                                                        )

                                                    [3] => Array
                                                        (
                                                            [path] => ./files/crop_uploader/jcrop/jquery.Jcrop.js
                                                            [name] => jquery.Jcrop.js
                                                            [extension] => js
                                                            [size] => 25566
                                                            [kind] => file
                                                        )

                                                    [4] => Array
                                                        (
                                                            [path] => ./files/crop_uploader/jcrop/jquery.Jcrop.min.js
                                                            [name] => jquery.Jcrop.min.js
                                                            [extension] => js
                                                            [size] => 17103
                                                            [kind] => file
                                                        )

                                                )

                                        )

                                    [4] => Array
                                        (
                                            [path] => ./files/crop_uploader/jquery-1.3.2.js
                                            [name] => jquery-1.3.2.js
                                            [extension] => js
                                            [size] => 120763
                                            [kind] => file
                                        )

                                    [5] => Array
                                        (
                                            [path] => ./files/crop_uploader/photos
                                            [name] => photos
                                            [kind] => directory
                                            [content] => Array
                                                (
                                                    [0] => Array
                                                        (
                                                            [path] => ./files/crop_uploader/photos/50
                                                            [name] => 50
                                                            [kind] => directory
                                                            [content] => Array
                                                                (
                                                                    [0] => Array
                                                                        (
                                                                            [path] => ./files/crop_uploader/photos/50/Thumbs.db
                                                                            [name] => Thumbs.db
                                                                            [extension] => db
                                                                            [size] => 7680
                                                                            [kind] => file
                                                                        )

                                                                )

                                                        )

                                                    [1] => Array
                                                        (
                                                            [path] => ./files/crop_uploader/photos/picture_temp.jpg
                                                            [name] => picture_temp.jpg
                                                            [extension] => jpg
                                                            [size] => 26932
                                                            [kind] => file
                                                        )

                                                    [2] => Array
                                                        (
                                                            [path] => ./files/crop_uploader/photos/Thumbs.db
                                                            [name] => Thumbs.db
                                                            [extension] => db
                                                            [size] => 12288
                                                            [kind] => file
                                                        )

                                                )

                                        )

                                    [6] => Array
                                        (
                                            [path] => ./files/crop_uploader/upload.php
                                            [name] => upload.php
                                            [extension] => php
                                            [size] => 1314
                                            [kind] => file
                                        )

                                    [7] => Array
                                        (
                                            [path] => ./files/crop_uploader/uploadify
                                            [name] => uploadify
                                            [kind] => directory
                                            [content] => Array
                                                (
                                                    [0] => Array
                                                        (
                                                            [path] => ./files/crop_uploader/uploadify/cancel.png
                                                            [name] => cancel.png
                                                            [extension] => png
                                                            [size] => 603
                                                            [kind] => file
                                                        )

                                                    [1] => Array
                                                        (
                                                            [path] => ./files/crop_uploader/uploadify/default.css
                                                            [name] => default.css
                                                            [extension] => css
                                                            [size] => 91
                                                            [kind] => file
                                                        )

                                                    [2] => Array
                                                        (
                                                            [path] => ./files/crop_uploader/uploadify/jquery.uploadify.v2.1.0.js
                                                            [name] => jquery.uploadify.v2.1.0.js
                                                            [extension] => js
                                                            [size] => 12930
                                                            [kind] => file
                                                        )

                                                    [3] => Array
                                                        (
                                                            [path] => ./files/crop_uploader/uploadify/jquery.uploadify.v2.1.0.min.js
                                                            [name] => jquery.uploadify.v2.1.0.min.js
                                                            [extension] => js
                                                            [size] => 7622
                                                            [kind] => file
                                                        )

                                                    [4] => Array
                                                        (
                                                            [path] => ./files/crop_uploader/uploadify/swfobject.js
                                                            [name] => swfobject.js
                                                            [extension] => js
                                                            [size] => 10220
                                                            [kind] => file
                                                        )

                                                    [5] => Array
                                                        (
                                                            [path] => ./files/crop_uploader/uploadify/uploadify.css
                                                            [name] => uploadify.css
                                                            [extension] => css
                                                            [size] => 1792
                                                            [kind] => file
                                                        )

                                                    [6] => Array
                                                        (
                                                            [path] => ./files/crop_uploader/uploadify/uploadify.swf
                                                            [name] => uploadify.swf
                                                            [extension] => swf
                                                            [size] => 23119
                                                            [kind] => file
                                                        )

                                                )

                                        )

                                )

                        )

                    [1] => Array
                        (
                            [path] => ./files/jquery-swfupload
                            [name] => jquery-swfupload
                            [kind] => directory
                            [content] => Array
                                (
                                    [0] => Array
                                        (
                                            [path] => ./files/jquery-swfupload/index.html
                                            [name] => index.html
                                            [extension] => html
                                            [size] => 4189
                                            [kind] => file
                                        )

                                    [1] => Array
                                        (
                                            [path] => ./files/jquery-swfupload/jqueryload.js
                                            [name] => jqueryload.js
                                            [extension] => js
                                            [size] => 748
                                            [kind] => file
                                        )

                                    [2] => Array
                                        (
                                            [path] => ./files/jquery-swfupload/js
                                            [name] => js
                                            [kind] => directory
                                            [content] => Array
                                                (
                                                    [0] => Array
                                                        (
                                                            [path] => ./files/jquery-swfupload/js/jquery-1.3.2.js
                                                            [name] => jquery-1.3.2.js
                                                            [extension] => js
                                                            [size] => 57272
                                                            [kind] => file
                                                        )

                                                    [1] => Array
                                                        (
                                                            [path] => ./files/jquery-swfupload/js/jquery.swfupload.js
                                                            [name] => jquery.swfupload.js
                                                            [extension] => js
                                                            [size] => 1922
                                                            [kind] => file
                                                        )

                                                    [2] => Array
                                                        (
                                                            [path] => ./files/jquery-swfupload/js/swfupload
                                                            [name] => swfupload
                                                            [kind] => directory
                                                            [content] => Array
                                                                (
                                                                    [0] => Array
                                                                        (
                                                                            [path] => ./files/jquery-swfupload/js/swfupload/cancel.png
                                                                            [name] => cancel.png
                                                                            [extension] => png
                                                                            [size] => 961
                                                                            [kind] => file
                                                                        )

                                                                    [1] => Array
                                                                        (
                                                                            [path] => ./files/jquery-swfupload/js/swfupload/swfupload.js
                                                                            [name] => swfupload.js
                                                                            [extension] => js
                                                                            [size] => 37689
                                                                            [kind] => file
                                                                        )

                                                                    [2] => Array
                                                                        (
                                                                            [path] => ./files/jquery-swfupload/js/swfupload/swfupload.queue.js
                                                                            [name] => swfupload.queue.js
                                                                            [extension] => js
                                                                            [size] => 3420
                                                                            [kind] => file
                                                                        )

                                                                    [3] => Array
                                                                        (
                                                                            [path] => ./files/jquery-swfupload/js/swfupload/swfupload.swf
                                                                            [name] => swfupload.swf
                                                                            [extension] => swf
                                                                            [size] => 12787
                                                                            [kind] => file
                                                                        )

                                                                    [4] => Array
                                                                        (
                                                                            [path] => ./files/jquery-swfupload/js/swfupload/wdp_buttons_upload_114x29.png
                                                                            [name] => wdp_buttons_upload_114x29.png
                                                                            [extension] => png
                                                                            [size] => 4826
                                                                            [kind] => file
                                                                        )

                                                                    [5] => Array
                                                                        (
                                                                            [path] => ./files/jquery-swfupload/js/swfupload/XPButtonUploadText_61x22.png
                                                                            [name] => XPButtonUploadText_61x22.png
                                                                            [extension] => png
                                                                            [size] => 1855
                                                                            [kind] => file
                                                                        )

                                                                )

                                                        )

                                                )

                                        )

                                    [3] => Array
                                        (
                                            [path] => ./files/jquery-swfupload/upload-file.php
                                            [name] => upload-file.php
                                            [extension] => php
                                            [size] => 471
                                            [kind] => file
                                        )

                                    [4] => Array
                                        (
                                            [path] => ./files/jquery-swfupload/uploads
                                            [name] => uploads
                                            [kind] => directory
                                            [content] => Array
                                                (
                                                    [0] => Array
                                                        (
                                                            [path] => ./files/jquery-swfupload/uploads/3.png
                                                            [name] => 3.png
                                                            [extension] => png
                                                            [size] => 27869
                                                            [kind] => file
                                                        )

                                                    [1] => Array
                                                        (
                                                            [path] => ./files/jquery-swfupload/uploads/5775529.jpg
                                                            [name] => 5775529.jpg
                                                            [extension] => jpg
                                                            [size] => 92641
                                                            [kind] => file
                                                        )

                                                    [2] => Array
                                                        (
                                                            [path] => ./files/jquery-swfupload/uploads/bigred_copy.gif
                                                            [name] => bigred_copy.gif
                                                            [extension] => gif
                                                            [size] => 53472
                                                            [kind] => file
                                                        )

                                                    [3] => Array
                                                        (
                                                            [path] => ./files/jquery-swfupload/uploads/Chrysanthemum.jpg
                                                            [name] => Chrysanthemum.jpg
                                                            [extension] => jpg
                                                            [size] => 879394
                                                            [kind] => file
                                                        )

                                                    [4] => Array
                                                        (
                                                            [path] => ./files/jquery-swfupload/uploads/Desert.jpg
                                                            [name] => Desert.jpg
                                                            [extension] => jpg
                                                            [size] => 845941
                                                            [kind] => file
                                                        )

                                                    [5] => Array
                                                        (
                                                            [path] => ./files/jquery-swfupload/uploads/Hydrangeas.jpg
                                                            [name] => Hydrangeas.jpg
                                                            [extension] => jpg
                                                            [size] => 595284
                                                            [kind] => file
                                                        )

                                                    [6] => Array
                                                        (
                                                            [path] => ./files/jquery-swfupload/uploads/Jellyfish.jpg
                                                            [name] => Jellyfish.jpg
                                                            [extension] => jpg
                                                            [size] => 775702
                                                            [kind] => file
                                                        )

                                                    [7] => Array
                                                        (
                                                            [path] => ./files/jquery-swfupload/uploads/Koala.jpg
                                                            [name] => Koala.jpg
                                                            [extension] => jpg
                                                            [size] => 48546
                                                            [kind] => file
                                                        )

                                                )

                                        )

                                )

                        )

                    [2] => Array
                        (
                            [path] => ./files/nivo-slider2.6
                            [name] => nivo-slider2.6
                            [kind] => directory
                            [content] => Array
                                (
                                    [0] => Array
                                        (
                                            [path] => ./files/nivo-slider2.6/movie.fla
                                            [name] => movie.fla
                                            [extension] => fla
                                            [size] => 75264
                                            [kind] => file
                                        )

                                    [1] => Array
                                        (
                                            [path] => ./files/nivo-slider2.6/movie.swf
                                            [name] => movie.swf
                                            [extension] => swf
                                            [size] => 2827
                                            [kind] => file
                                        )

                                    [2] => Array
                                        (
                                            [path] => ./files/nivo-slider2.6/movie2.swf
                                            [name] => movie2.swf
                                            [extension] => swf
                                            [size] => 2859
                                            [kind] => file
                                        )

                                    [3] => Array
                                        (
                                            [path] => ./files/nivo-slider2.6/nivo-slider
                                            [name] => nivo-slider
                                            [kind] => directory
                                            [content] => Array
                                                (
                                                    [0] => Array
                                                        (
                                                            [path] => ./files/nivo-slider2.6/nivo-slider/config.txt
                                                            [name] => config.txt
                                                            [extension] => txt
                                                            [size] => 1509
                                                            [kind] => file
                                                        )

                                                    [1] => Array
                                                        (
                                                            [path] => ./files/nivo-slider2.6/nivo-slider/demo
                                                            [name] => demo
                                                            [kind] => directory
                                                            [content] => Array
                                                                (
                                                                    [0] => Array
                                                                        (
                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/demo/demo.html
                                                                            [name] => demo.html
                                                                            [extension] => html
                                                                            [size] => 1840
                                                                            [kind] => file
                                                                        )

                                                                    [1] => Array
                                                                        (
                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/demo/images
                                                                            [name] => images
                                                                            [kind] => directory
                                                                            [content] => Array
                                                                                (
                                                                                    [0] => Array
                                                                                        (
                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/demo/images/dev7logo.png
                                                                                            [name] => dev7logo.png
                                                                                            [extension] => png
                                                                                            [size] => 1930
                                                                                            [kind] => file
                                                                                        )

                                                                                    [1] => Array
                                                                                        (
                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/demo/images/nemo.jpg
                                                                                            [name] => nemo.jpg
                                                                                            [extension] => jpg
                                                                                            [size] => 79708
                                                                                            [kind] => file
                                                                                        )

                                                                                    [2] => Array
                                                                                        (
                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/demo/images/pics
                                                                                            [name] => pics
                                                                                            [kind] => directory
                                                                                            [content] => Array
                                                                                                (
                                                                                                    [0] => Array
                                                                                                        (
                                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/demo/images/pics/2.jpg
                                                                                                            [name] => 2.jpg
                                                                                                            [extension] => jpg
                                                                                                            [size] => 104905
                                                                                                            [kind] => file
                                                                                                        )

                                                                                                    [1] => Array
                                                                                                        (
                                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/demo/images/pics/3.jpg
                                                                                                            [name] => 3.jpg
                                                                                                            [extension] => jpg
                                                                                                            [size] => 114118
                                                                                                            [kind] => file
                                                                                                        )

                                                                                                    [2] => Array
                                                                                                        (
                                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/demo/images/pics/4.jpg
                                                                                                            [name] => 4.jpg
                                                                                                            [extension] => jpg
                                                                                                            [size] => 51802
                                                                                                            [kind] => file
                                                                                                        )

                                                                                                    [3] => Array
                                                                                                        (
                                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/demo/images/pics/5.jpg
                                                                                                            [name] => 5.jpg
                                                                                                            [extension] => jpg
                                                                                                            [size] => 66523
                                                                                                            [kind] => file
                                                                                                        )

                                                                                                    [4] => Array
                                                                                                        (
                                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/demo/images/pics/6.jpg
                                                                                                            [name] => 6.jpg
                                                                                                            [extension] => jpg
                                                                                                            [size] => 69120
                                                                                                            [kind] => file
                                                                                                        )

                                                                                                    [5] => Array
                                                                                                        (
                                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/demo/images/pics/7.jpg
                                                                                                            [name] => 7.jpg
                                                                                                            [extension] => jpg
                                                                                                            [size] => 51802
                                                                                                            [kind] => file
                                                                                                        )

                                                                                                    [6] => Array
                                                                                                        (
                                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/demo/images/pics/header.jpg
                                                                                                            [name] => header.jpg
                                                                                                            [extension] => jpg
                                                                                                            [size] => 31998
                                                                                                            [kind] => file
                                                                                                        )

                                                                                                )

                                                                                        )

                                                                                    [3] => Array
                                                                                        (
                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/demo/images/toystory.jpg
                                                                                            [name] => toystory.jpg
                                                                                            [extension] => jpg
                                                                                            [size] => 91573
                                                                                            [kind] => file
                                                                                        )

                                                                                    [4] => Array
                                                                                        (
                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/demo/images/up.jpg
                                                                                            [name] => up.jpg
                                                                                            [extension] => jpg
                                                                                            [size] => 71231
                                                                                            [kind] => file
                                                                                        )

                                                                                    [5] => Array
                                                                                        (
                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/demo/images/walle.jpg
                                                                                            [name] => walle.jpg
                                                                                            [extension] => jpg
                                                                                            [size] => 76610
                                                                                            [kind] => file
                                                                                        )

                                                                                )

                                                                        )

                                                                    [2] => Array
                                                                        (
                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/demo/scripts
                                                                            [name] => scripts
                                                                            [kind] => directory
                                                                            [content] => Array
                                                                                (
                                                                                    [0] => Array
                                                                                        (
                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/demo/scripts/jquery-1.6.1.min.jsg
                                                                                            [name] => jquery-1.6.1.min.jsg
                                                                                            [extension] => jsg
                                                                                            [size] => 91342
                                                                                            [kind] => file
                                                                                        )

                                                                                )

                                                                        )

                                                                    [3] => Array
                                                                        (
                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/demo/style.css
                                                                            [name] => style.css
                                                                            [extension] => css
                                                                            [size] => 2076
                                                                            [kind] => file
                                                                        )

                                                                )

                                                        )

                                                    [2] => Array
                                                        (
                                                            [path] => ./files/nivo-slider2.6/nivo-slider/jquery.nivo.slider.js
                                                            [name] => jquery.nivo.slider.js
                                                            [extension] => js
                                                            [size] => 25281
                                                            [kind] => file
                                                        )

                                                    [3] => Array
                                                        (
                                                            [path] => ./files/nivo-slider2.6/nivo-slider/jquery.nivo.slider.pack.js
                                                            [name] => jquery.nivo.slider.pack.js
                                                            [extension] => js
                                                            [size] => 15919
                                                            [kind] => file
                                                        )

                                                    [4] => Array
                                                        (
                                                            [path] => ./files/nivo-slider2.6/nivo-slider/license.txt
                                                            [name] => license.txt
                                                            [extension] => txt
                                                            [size] => 1102
                                                            [kind] => file
                                                        )

                                                    [5] => Array
                                                        (
                                                            [path] => ./files/nivo-slider2.6/nivo-slider/nivo-slider.css
                                                            [name] => nivo-slider.css
                                                            [extension] => css
                                                            [size] => 1505
                                                            [kind] => file
                                                        )

                                                    [6] => Array
                                                        (
                                                            [path] => ./files/nivo-slider2.6/nivo-slider/README
                                                            [name] => README
                                                            [extension] => README
                                                            [size] => 101
                                                            [kind] => file
                                                        )

                                                    [7] => Array
                                                        (
                                                            [path] => ./files/nivo-slider2.6/nivo-slider/themes
                                                            [name] => themes
                                                            [kind] => directory
                                                            [content] => Array
                                                                (
                                                                    [0] => Array
                                                                        (
                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/themes/default
                                                                            [name] => default
                                                                            [kind] => directory
                                                                            [content] => Array
                                                                                (
                                                                                    [0] => Array
                                                                                        (
                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/themes/default/arrows.png
                                                                                            [name] => arrows.png
                                                                                            [extension] => png
                                                                                            [size] => 824
                                                                                            [kind] => file
                                                                                        )

                                                                                    [1] => Array
                                                                                        (
                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/themes/default/bullets.png
                                                                                            [name] => bullets.png
                                                                                            [extension] => png
                                                                                            [size] => 1281
                                                                                            [kind] => file
                                                                                        )

                                                                                    [2] => Array
                                                                                        (
                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/themes/default/default.css
                                                                                            [name] => default.css
                                                                                            [extension] => css
                                                                                            [size] => 1415
                                                                                            [kind] => file
                                                                                        )

                                                                                    [3] => Array
                                                                                        (
                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/themes/default/loading.gif
                                                                                            [name] => loading.gif
                                                                                            [extension] => gif
                                                                                            [size] => 1737
                                                                                            [kind] => file
                                                                                        )

                                                                                )

                                                                        )

                                                                    [1] => Array
                                                                        (
                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/themes/orman
                                                                            [name] => orman
                                                                            [kind] => directory
                                                                            [content] => Array
                                                                                (
                                                                                    [0] => Array
                                                                                        (
                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/themes/orman/arrows.png
                                                                                            [name] => arrows.png
                                                                                            [extension] => png
                                                                                            [size] => 5902
                                                                                            [kind] => file
                                                                                        )

                                                                                    [1] => Array
                                                                                        (
                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/themes/orman/bullets.png
                                                                                            [name] => bullets.png
                                                                                            [extension] => png
                                                                                            [size] => 3364
                                                                                            [kind] => file
                                                                                        )

                                                                                    [2] => Array
                                                                                        (
                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/themes/orman/loading.gif
                                                                                            [name] => loading.gif
                                                                                            [extension] => gif
                                                                                            [size] => 1737
                                                                                            [kind] => file
                                                                                        )

                                                                                    [3] => Array
                                                                                        (
                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/themes/orman/orman.css
                                                                                            [name] => orman.css
                                                                                            [extension] => css
                                                                                            [size] => 2102
                                                                                            [kind] => file
                                                                                        )

                                                                                    [4] => Array
                                                                                        (
                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/themes/orman/readme.txt
                                                                                            [name] => readme.txt
                                                                                            [extension] => txt
                                                                                            [size] => 92
                                                                                            [kind] => file
                                                                                        )

                                                                                    [5] => Array
                                                                                        (
                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/themes/orman/ribbon.png
                                                                                            [name] => ribbon.png
                                                                                            [extension] => png
                                                                                            [size] => 12763
                                                                                            [kind] => file
                                                                                        )

                                                                                    [6] => Array
                                                                                        (
                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/themes/orman/slider.png
                                                                                            [name] => slider.png
                                                                                            [extension] => png
                                                                                            [size] => 36094
                                                                                            [kind] => file
                                                                                        )

                                                                                )

                                                                        )

                                                                    [2] => Array
                                                                        (
                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/themes/pascal
                                                                            [name] => pascal
                                                                            [kind] => directory
                                                                            [content] => Array
                                                                                (
                                                                                    [0] => Array
                                                                                        (
                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/themes/pascal/bullets.png
                                                                                            [name] => bullets.png
                                                                                            [extension] => png
                                                                                            [size] => 3306
                                                                                            [kind] => file
                                                                                        )

                                                                                    [1] => Array
                                                                                        (
                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/themes/pascal/controlnav.png
                                                                                            [name] => controlnav.png
                                                                                            [extension] => png
                                                                                            [size] => 5733
                                                                                            [kind] => file
                                                                                        )

                                                                                    [2] => Array
                                                                                        (
                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/themes/pascal/featured.png
                                                                                            [name] => featured.png
                                                                                            [extension] => png
                                                                                            [size] => 10973
                                                                                            [kind] => file
                                                                                        )

                                                                                    [3] => Array
                                                                                        (
                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/themes/pascal/loading.gif
                                                                                            [name] => loading.gif
                                                                                            [extension] => gif
                                                                                            [size] => 1737
                                                                                            [kind] => file
                                                                                        )

                                                                                    [4] => Array
                                                                                        (
                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/themes/pascal/pascal.css
                                                                                            [name] => pascal.css
                                                                                            [extension] => css
                                                                                            [size] => 2065
                                                                                            [kind] => file
                                                                                        )

                                                                                    [5] => Array
                                                                                        (
                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/themes/pascal/readme.txt
                                                                                            [name] => readme.txt
                                                                                            [extension] => txt
                                                                                            [size] => 93
                                                                                            [kind] => file
                                                                                        )

                                                                                    [6] => Array
                                                                                        (
                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/themes/pascal/ribbon.png
                                                                                            [name] => ribbon.png
                                                                                            [extension] => png
                                                                                            [size] => 10973
                                                                                            [kind] => file
                                                                                        )

                                                                                    [7] => Array
                                                                                        (
                                                                                            [path] => ./files/nivo-slider2.6/nivo-slider/themes/pascal/slider.png
                                                                                            [name] => slider.png
                                                                                            [extension] => png
                                                                                            [size] => 8989
                                                                                            [kind] => file
                                                                                        )

                                                                                )

                                                                        )

                                                                )

                                                        )

                                                )

                                        )

                                )

                        )

                )

        )

    [1] => Array
        (
            [path] => ./inc
            [name] => inc
            [kind] => directory
            [content] => Array
                (
                    [0] => Array
                        (
                            [path] => ./inc/scan
                            [name] => scan
                            [kind] => directory
                            [content] => Array
                                (
                                    [0] => Array
                                        (
                                            [path] => ./inc/scan/bg.png
                                            [name] => bg.png
                                            [extension] => png
                                            [size] => 325
                                            [kind] => file
                                        )

                                    [1] => Array
                                        (
                                            [path] => ./inc/scan/dlf
                                            [name] => dlf
                                            [kind] => directory
                                            [content] => Array
                                                (
                                                    [0] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/43.png
                                                            [name] => 43.png
                                                            [extension] => png
                                                            [size] => 5022
                                                            [kind] => file
                                                        )

                                                    [1] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/archive.png
                                                            [name] => archive.png
                                                            [extension] => png
                                                            [size] => 632
                                                            [kind] => file
                                                        )

                                                    [2] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/bg.gif
                                                            [name] => bg.gif
                                                            [extension] => gif
                                                            [size] => 54
                                                            [kind] => file
                                                        )

                                                    [3] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/bg.png
                                                            [name] => bg.png
                                                            [extension] => png
                                                            [size] => 126
                                                            [kind] => file
                                                        )

                                                    [4] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/bg_hover.png
                                                            [name] => bg_hover.png
                                                            [extension] => png
                                                            [size] => 133
                                                            [kind] => file
                                                        )

                                                    [5] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/binary.png
                                                            [name] => binary.png
                                                            [extension] => png
                                                            [size] => 193
                                                            [kind] => file
                                                        )

                                                    [6] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/blank.gif
                                                            [name] => blank.gif
                                                            [extension] => gif
                                                            [size] => 807
                                                            [kind] => file
                                                        )

                                                    [7] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/del.png
                                                            [name] => del.png
                                                            [extension] => png
                                                            [size] => 587
                                                            [kind] => file
                                                        )

                                                    [8] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/dirup.png
                                                            [name] => dirup.png
                                                            [extension] => png
                                                            [size] => 1192
                                                            [kind] => file
                                                        )

                                                    [9] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/doc.gif
                                                            [name] => doc.gif
                                                            [extension] => gif
                                                            [size] => 1079
                                                            [kind] => file
                                                        )

                                                    [10] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/Download_48x48.png
                                                            [name] => Download_48x48.png
                                                            [extension] => png
                                                            [size] => 2891
                                                            [kind] => file
                                                        )

                                                    [11] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/ende.png
                                                            [name] => ende.png
                                                            [extension] => png
                                                            [size] => 12782
                                                            [kind] => file
                                                        )

                                                    [12] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/eps.gif
                                                            [name] => eps.gif
                                                            [extension] => gif
                                                            [size] => 379
                                                            [kind] => file
                                                        )

                                                    [13] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/exe.gif
                                                            [name] => exe.gif
                                                            [extension] => gif
                                                            [size] => 608
                                                            [kind] => file
                                                        )

                                                    [14] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/fh10.gif
                                                            [name] => fh10.gif
                                                            [extension] => gif
                                                            [size] => 405
                                                            [kind] => file
                                                        )

                                                    [15] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/fla.gif
                                                            [name] => fla.gif
                                                            [extension] => gif
                                                            [size] => 393
                                                            [kind] => file
                                                        )

                                                    [16] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/flv.png
                                                            [name] => flv.png
                                                            [extension] => png
                                                            [size] => 593
                                                            [kind] => file
                                                        )

                                                    [17] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/folder.png
                                                            [name] => folder.png
                                                            [extension] => png
                                                            [size] => 410
                                                            [kind] => file
                                                        )

                                                    [18] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/gif.gif
                                                            [name] => gif.gif
                                                            [extension] => gif
                                                            [size] => 596
                                                            [kind] => file
                                                        )

                                                    [19] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/html.gif
                                                            [name] => html.gif
                                                            [extension] => gif
                                                            [size] => 632
                                                            [kind] => file
                                                        )

                                                    [20] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/html.png
                                                            [name] => html.png
                                                            [extension] => png
                                                            [size] => 737
                                                            [kind] => file
                                                        )

                                                    [21] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/i.php
                                                            [name] => i.php
                                                            [extension] => php
                                                            [size] => 1400
                                                            [kind] => file
                                                        )

                                                    [22] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/jpg.gif
                                                            [name] => jpg.gif
                                                            [extension] => gif
                                                            [size] => 597
                                                            [kind] => file
                                                        )

                                                    [23] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/pdf.gif
                                                            [name] => pdf.gif
                                                            [extension] => gif
                                                            [size] => 272
                                                            [kind] => file
                                                        )

                                                    [24] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/psd.gif
                                                            [name] => psd.gif
                                                            [extension] => gif
                                                            [size] => 386
                                                            [kind] => file
                                                        )

                                                    [25] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/real.gif
                                                            [name] => real.gif
                                                            [extension] => gif
                                                            [size] => 267
                                                            [kind] => file
                                                        )

                                                    [26] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/scan_styles-white.css
                                                            [name] => scan_styles-white.css
                                                            [extension] => css
                                                            [size] => 3548
                                                            [kind] => file
                                                        )

                                                    [27] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/scan_styles.css
                                                            [name] => scan_styles.css
                                                            [extension] => css
                                                            [size] => 3552
                                                            [kind] => file
                                                        )

                                                    [28] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/setup.gif
                                                            [name] => setup.gif
                                                            [extension] => gif
                                                            [size] => 190
                                                            [kind] => file
                                                        )

                                                    [29] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/sig.gif
                                                            [name] => sig.gif
                                                            [extension] => gif
                                                            [size] => 243
                                                            [kind] => file
                                                        )

                                                    [30] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/swf.gif
                                                            [name] => swf.gif
                                                            [extension] => gif
                                                            [size] => 399
                                                            [kind] => file
                                                        )

                                                    [31] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/text.png
                                                            [name] => text.png
                                                            [extension] => png
                                                            [size] => 433
                                                            [kind] => file
                                                        )

                                                    [32] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/trans.gif
                                                            [name] => trans.gif
                                                            [extension] => gif
                                                            [size] => 49
                                                            [kind] => file
                                                        )

                                                    [33] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/unknown.png
                                                            [name] => unknown.png
                                                            [extension] => png
                                                            [size] => 266
                                                            [kind] => file
                                                        )

                                                    [34] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/video.gif
                                                            [name] => video.gif
                                                            [extension] => gif
                                                            [size] => 614
                                                            [kind] => file
                                                        )

                                                    [35] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/video2.gif
                                                            [name] => video2.gif
                                                            [extension] => gif
                                                            [size] => 1019
                                                            [kind] => file
                                                        )

                                                    [36] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/white
                                                            [name] => white
                                                            [kind] => directory
                                                            [content] => Array
                                                                (
                                                                    [0] => Array
                                                                        (
                                                                            [path] => ./inc/scan/dlf/white/43-white.png
                                                                            [name] => 43-white.png
                                                                            [extension] => png
                                                                            [size] => 5238
                                                                            [kind] => file
                                                                        )

                                                                    [1] => Array
                                                                        (
                                                                            [path] => ./inc/scan/dlf/white/bg.png
                                                                            [name] => bg.png
                                                                            [extension] => png
                                                                            [size] => 133
                                                                            [kind] => file
                                                                        )

                                                                )

                                                        )

                                                    [37] => Array
                                                        (
                                                            [path] => ./inc/scan/dlf/xls.gif
                                                            [name] => xls.gif
                                                            [extension] => gif
                                                            [size] => 636
                                                            [kind] => file
                                                        )

                                                )

                                        )

                                    [2] => Array
                                        (
                                            [path] => ./inc/scan/e_meta.php
                                            [name] => e_meta.php
                                            [extension] => php
                                            [size] => 24094
                                            [kind] => file
                                        )

                                    [3] => Array
                                        (
                                            [path] => ./inc/scan/help.js
                                            [name] => help.js
                                            [extension] => js
                                            [size] => 1235
                                            [kind] => file
                                        )

                                    [4] => Array
                                        (
                                            [path] => ./inc/scan/jquery.fancybox-2.0.3
                                            [name] => jquery.fancybox-2.0.3
                                            [kind] => directory
                                            [content] => Array
                                                (
                                                    [0] => Array
                                                        (
                                                            [path] => ./inc/scan/jquery.fancybox-2.0.3/2.jpg
                                                            [name] => 2.jpg
                                                            [extension] => jpg
                                                            [size] => 1274124
                                                            [kind] => file
                                                        )

                                                    [1] => Array
                                                        (
                                                            [path] => ./inc/scan/jquery.fancybox-2.0.3/3.jpg
                                                            [name] => 3.jpg
                                                            [extension] => jpg
                                                            [size] => 108441
                                                            [kind] => file
                                                        )

                                                    [2] => Array
                                                        (
                                                            [path] => ./inc/scan/jquery.fancybox-2.0.3/ajax.php
                                                            [name] => ajax.php
                                                            [extension] => php
                                                            [size] => 2524
                                                            [kind] => file
                                                        )

                                                    [3] => Array
                                                        (
                                                            [path] => ./inc/scan/jquery.fancybox-2.0.3/bg.png
                                                            [name] => bg.png
                                                            [extension] => png
                                                            [size] => 325
                                                            [kind] => file
                                                        )

                                                    [4] => Array
                                                        (
                                                            [path] => ./inc/scan/jquery.fancybox-2.0.3/blank.gif
                                                            [name] => blank.gif
                                                            [extension] => gif
                                                            [size] => 43
                                                            [kind] => file
                                                        )

                                                    [5] => Array
                                                        (
                                                            [path] => ./inc/scan/jquery.fancybox-2.0.3/CHANGELOG.md
                                                            [name] => CHANGELOG.md
                                                            [extension] => md
                                                            [size] => 744
                                                            [kind] => file
                                                        )

                                                    [6] => Array
                                                        (
                                                            [path] => ./inc/scan/jquery.fancybox-2.0.3/fancyboxload.js
                                                            [name] => fancyboxload.js
                                                            [extension] => js
                                                            [size] => 1323
                                                            [kind] => file
                                                        )

                                                    [7] => Array
                                                        (
                                                            [path] => ./inc/scan/jquery.fancybox-2.0.3/fancybox_loading.gif
                                                            [name] => fancybox_loading.gif
                                                            [extension] => gif
                                                            [size] => 5969
                                                            [kind] => file
                                                        )

                                                    [8] => Array
                                                        (
                                                            [path] => ./inc/scan/jquery.fancybox-2.0.3/fancybox_sprite.png
                                                            [name] => fancybox_sprite.png
                                                            [extension] => png
                                                            [size] => 2750
                                                            [kind] => file
                                                        )

                                                    [9] => Array
                                                        (
                                                            [path] => ./inc/scan/jquery.fancybox-2.0.3/helpers
                                                            [name] => helpers
                                                            [kind] => directory
                                                            [content] => Array
                                                                (
                                                                    [0] => Array
                                                                        (
                                                                            [path] => ./inc/scan/jquery.fancybox-2.0.3/helpers/fancybox_buttons.png
                                                                            [name] => fancybox_buttons.png
                                                                            [extension] => png
                                                                            [size] => 2396
                                                                            [kind] => file
                                                                        )

                                                                    [1] => Array
                                                                        (
                                                                            [path] => ./inc/scan/jquery.fancybox-2.0.3/helpers/jquery.fancybox-buttons.css
                                                                            [name] => jquery.fancybox-buttons.css
                                                                            [extension] => css
                                                                            [size] => 1783
                                                                            [kind] => file
                                                                        )

                                                                    [2] => Array
                                                                        (
                                                                            [path] => ./inc/scan/jquery.fancybox-2.0.3/helpers/jquery.fancybox-buttons.js
                                                                            [name] => jquery.fancybox-buttons.js
                                                                            [extension] => js
                                                                            [size] => 2625
                                                                            [kind] => file
                                                                        )

                                                                    [3] => Array
                                                                        (
                                                                            [path] => ./inc/scan/jquery.fancybox-2.0.3/helpers/jquery.fancybox-thumbs.css
                                                                            [name] => jquery.fancybox-thumbs.css
                                                                            [extension] => css
                                                                            [size] => 682
                                                                            [kind] => file
                                                                        )

                                                                    [4] => Array
                                                                        (
                                                                            [path] => ./inc/scan/jquery.fancybox-2.0.3/helpers/jquery.fancybox-thumbs.js
                                                                            [name] => jquery.fancybox-thumbs.js
                                                                            [extension] => js
                                                                            [size] => 3691
                                                                            [kind] => file
                                                                        )

                                                                )

                                                        )

                                                    [10] => Array
                                                        (
                                                            [path] => ./inc/scan/jquery.fancybox-2.0.3/jquery.easing-1.3.pack.js
                                                            [name] => jquery.easing-1.3.pack.js
                                                            [extension] => js
                                                            [size] => 6789
                                                            [kind] => file
                                                        )

                                                    [11] => Array
                                                        (
                                                            [path] => ./inc/scan/jquery.fancybox-2.0.3/jquery.fancybox.css
                                                            [name] => jquery.fancybox.css
                                                            [extension] => css
                                                            [size] => 3901
                                                            [kind] => file
                                                        )

                                                    [12] => Array
                                                        (
                                                            [path] => ./inc/scan/jquery.fancybox-2.0.3/jquery.fancybox.js
                                                            [name] => jquery.fancybox.js
                                                            [extension] => js
                                                            [size] => 30399
                                                            [kind] => file
                                                        )

                                                    [13] => Array
                                                        (
                                                            [path] => ./inc/scan/jquery.fancybox-2.0.3/jquery.fancybox.js.htm
                                                            [name] => jquery.fancybox.js.htm
                                                            [extension] => htm
                                                            [size] => 299600
                                                            [kind] => file
                                                        )

                                                    [14] => Array
                                                        (
                                                            [path] => ./inc/scan/jquery.fancybox-2.0.3/jquery.fancybox.pack.js
                                                            [name] => jquery.fancybox.pack.js
                                                            [extension] => js
                                                            [size] => 15816
                                                            [kind] => file
                                                        )

                                                    [15] => Array
                                                        (
                                                            [path] => ./inc/scan/jquery.fancybox-2.0.3/jquery.mousewheel-3.0.6.pack.js
                                                            [name] => jquery.mousewheel-3.0.6.pack.js
                                                            [extension] => js
                                                            [size] => 1396
                                                            [kind] => file
                                                        )

                                                    [16] => Array
                                                        (
                                                            [path] => ./inc/scan/jquery.fancybox-2.0.3/jqueryload.js
                                                            [name] => jqueryload.js
                                                            [extension] => js
                                                            [size] => 772
                                                            [kind] => file
                                                        )

                                                    [17] => Array
                                                        (
                                                            [path] => ./inc/scan/jquery.fancybox-2.0.3/README.md
                                                            [name] => README.md
                                                            [extension] => md
                                                            [size] => 4015
                                                            [kind] => file
                                                        )

                                                    [18] => Array
                                                        (
                                                            [path] => ./inc/scan/jquery.fancybox-2.0.3/test.htm
                                                            [name] => test.htm
                                                            [extension] => htm
                                                            [size] => 4880
                                                            [kind] => file
                                                        )

                                                )

                                        )

                                    [5] => Array
                                        (
                                            [path] => ./inc/scan/jwplayer
                                            [name] => jwplayer
                                            [kind] => directory
                                            [content] => Array
                                                (
                                                    [0] => Array
                                                        (
                                                            [path] => ./inc/scan/jwplayer/core.js
                                                            [name] => core.js
                                                            [extension] => js
                                                            [size] => 1970
                                                            [kind] => file
                                                        )

                                                    [1] => Array
                                                        (
                                                            [path] => ./inc/scan/jwplayer/player.swf
                                                            [name] => player.swf
                                                            [extension] => swf
                                                            [size] => 42566
                                                            [kind] => file
                                                        )

                                                    [2] => Array
                                                        (
                                                            [path] => ./inc/scan/jwplayer/yt.swf
                                                            [name] => yt.swf
                                                            [extension] => swf
                                                            [size] => 1210
                                                            [kind] => file
                                                        )

                                                )

                                        )

                                    [6] => Array
                                        (
                                            [path] => ./inc/scan/scan2.php
                                            [name] => scan2.php
                                            [extension] => php
                                            [size] => 23975
                                            [kind] => file
                                        )

                                )

                        )

                )

        )

    [2] => Array
        (
            [path] => ./listdir.php
            [name] => listdir.php
            [extension] => php
            [size] => 1943
            [kind] => file
        )

    [3] => Array
        (
            [path] => ./recursive_directory_scan_comments.php
            [name] => recursive_directory_scan_comments.php
            [extension] => php
            [size] => 3234
            [kind] => file
        )

    [4] => Array
        (
            [path] => ./test2.php
            [name] => test2.php
            [extension] => php
            [size] => 3289
            [kind] => file
        )

)

und wie bröselt man das auseinander?
 
Am besten schreibst du dir dafür auch eine rekursive Funktion. Wenn kein assoziativer index vorhanden ist, übergibst du das array einfach wieder an die Funktion.
 

Neue Beiträge

Zurück