method scand documentation in bbn\File\System2
function(string $path, bool $hidden = false, string $detailed = '')
{
if ( $this->check() && $this->isDir($path) ){
clearstatcache();
$is_absolute = strpos($path, '/') === 0;
$fs =& $this;
return array_map(function($a)use($is_absolute, $fs, $detailed){
if ( $detailed ){
$a['path'] = $fs->getSystemPath($a['path'], $is_absolute);
return $a;
}
return $fs->getSystemPath($a, $is_absolute);
}, $this->_scand($this->getRealPath($path), $hidden, $detailed));
}
return null;
}
BBN is a suite of PHP and JS libraries and VueJS components - all open-source! bbn.io, build applications, the quick way
This website uses cookies to ensure you get the best experience on our website.
© 2011-2025
BBN Solutions