6 lines
204 B
PHP
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)]);
|