13 lines
397 B
PHP
13 lines
397 B
PHP
<?php
|
|
// modules/EcmInvoiceOuts/ai/result.php
|
|
$base = __DIR__;
|
|
$files = glob("$base/out/*.json");
|
|
rsort($files);
|
|
$latest = $files[0] ?? null;
|
|
|
|
if (!$latest) { http_response_code(404); exit('Brak wyników'); }
|
|
|
|
$payload = json_decode(file_get_contents($latest), true);
|
|
header('Content-Type: application/json; charset=utf-8');
|
|
echo json_encode($payload, JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT);
|