method rscan documentation in bbn\File\System

function(string $path = '', $filter = NULL, 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['name'] = $fs->getSystemPath($a['name'], $is_absolute); return $a; } return $fs->getSystemPath($a, $is_absolute); }, $this->_rscan($this->getRealPath($path), $filter, $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.