Files
html/api/ambre-lint.php
2026-04-21 23:20:02 +02:00

6 lines
204 B
PHP

<?php
header("Content-Type: application/json");
$f = "/var/www/html/api/ambre-claude-stream.php";
$lint = @shell_exec("php8.5 -l $f 2>&1");
echo json_encode(["lint"=>trim($lint), "size"=>@filesize($f)]);