Files
file-directory-list/list.php
2021-08-12 18:50:56 +02:00

13 lines
251 B
PHP

<?php
$data = scandir(htmlspecialchars($_GET['name']));
if ($data) {
header('Content-type:application/json;charset=utf-8');
echo json_encode($data);
} else {
header('Content-type:application/json;charset=utf-8');
echo json_encode(array());
}
?>