14 lines
330 B
PHP
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);
|