- Output for 8.0.1 - 8.0.30, 8.1.0 - 8.1.30, 8.2.0 - 8.2.21, 8.2.23 - 8.2.26, 8.3.0 - 8.3.11, 8.3.13 - 8.3.14, 8.4.1
- . . .. ll176
- Output for 8.3.12
- . . .. ZL1r6 ll176
- Output for 8.2.22
- . . .. JG7BO ll176
- Output for 8.1.31
- . . .. n8ftW ll176
<?php
$contents = new RecursiveIteratorIterator(new RecursiveDirectoryIterator(__DIR__));
while ($contents->valid()) {
echo $contents->getSubPathName() . "\n";
$contents->next();
}