Files
html/api/ambre-list-tools.php
2026-04-22 02:40:02 +02:00

14 lines
330 B
PHP

<?php
header("Content-Type: application/json");
$files = glob("/var/www/html/api/ambre-*.php");
sort($files);
$out = [];
foreach ($files as $f) {
$out[] = [
"name" => basename($f),
"size" => filesize($f),
"mtime" => date("Y-m-d H:i", filemtime($f)),
];
}
echo json_encode($out, JSON_PRETTY_PRINT);