3DSTownSquare/3ds/mlist.php
2022-05-26 12:34:34 +00:00

8 lines
No EOL
238 B
PHP
Executable file

<?php
$dir = "acc/data";
$myfiles = array_diff(scandir($dir), array('.', '..', '.htaccess'));
foreach($myfiles as $filename){
if(is_file("acc/data/" . $filename)){
echo str_replace(".json", "", $filename) . '<br>';
}
}