| <?php |
| function scanDir(string $path): array |
| { |
| $result = []; |
| foreach (new \DirectoryIterator($path) as $item) { |
| if ($item->isDot() || !$item->isDir()) { |
| continue; |
| } |
| |
| $result[$item->getBasename()] = getFilesList($item->getPathname()); |
| } |
| |
| return $result; |
| } |
| |
| function getFilesList(string $path): array |
| { |
| $result = []; |
| |
| foreach (new \DirectoryIterator($path) as $item) { |
| if ($item->isDot()) { |
| continue; |
| } |
| |
| $result[] = $item->getBasename(); |
| } |
| |
| return $result; |
| } |
| ?> |
| Используем так: |
| <?php |
| $files = scanDir(__DIR__); |
| $json = json_encode($files); |