method getDirs documentation in bbn\File\System

function(string $path = '', bool $hidden = false, string $detailed = '') { if ($this->check()) { $is_absolute = strpos($path, '/') === 0; $fs = &$this; clearstatcache(); return array_map( function ($a) use ($is_absolute, $fs, $detailed) { if ($detailed) { $a['name'] = $fs->getSystemPath($a['name'], $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.