mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-01 16:49:53 +00:00
9 lines
196 B
PHP
9 lines
196 B
PHP
<?php
|
|
$dir = new RecursiveIteratorIterator(
|
|
new RecursiveDirectoryIterator('.'),
|
|
true);
|
|
|
|
foreach ($dir as $file) {
|
|
echo str_repeat('-', $dir->getDepth()) . " $file<br />";
|
|
}
|