12 lines
309 B
PHP
12 lines
309 B
PHP
<?php
|
|
header("Content-Type: text/plain");
|
|
$f = "/var/www/html/api/ambre-claude-stream.php";
|
|
// Get precise parse error
|
|
$out = @shell_exec("php8.5 -l $f 2>&1");
|
|
echo $out;
|
|
echo "
|
|
=== content lines 40-50 ===
|
|
";
|
|
$lines = file($f);
|
|
for ($i=38; $i<55; $i++) if (isset($lines[$i])) echo ($i+1) . ": " . $lines[$i];
|