method getDirs documentation in bbn\File\System2

function(string $path = '', bool $hidden = false, string $detailed = '') { if ( $this->check() && $this->isDir($path) ){ $is_absolute = strpos($path, '/') === 0; $fs =& $this; clearstatcache(); 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->_get_items($this->getRealPath($path), 'dir', $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.