PHP expert |
|
<?php
function GetFilesFromDir($path)
{
$dat = scandir($path);
$files = array();
foreach($dat as $d)
{
if($d == '.' || $d == '..')
{
continue;
}
$realpath = $path.'/'.$d;
if(is_file($realpath))
{
$files[] = $realpath;
}elseif(is_dir($realpath))
{
$newfiles = GetFilesFromDir($realpath);
if(!empty($newfiles))
{
$files = array_merge($files, $newfiles);
}
}
}
if(!empty($files))
{
return $files;
}
}
count(getfilesfromdir('www.jesit.com'));
?>
<?php function GetFilesFromDir($path) { $dat = scandir($path); foreach($dat as $d) { if($d == '.' || $d == '..') { continue; } $realpath = $path.'/'.$d; { $files[] = $realpath; { $newfiles = GetFilesFromDir($realpath); { } } } { return $files; } } count(getfilesfromdir ('www.jesit.com')); ?>
|