- Output for 8.2.0 - 8.2.27, 8.3.0 - 8.3.15, 8.4.1 - 8.4.2
- Parse error: syntax error, unexpected end of file in /in/KG0vv on line 12
Process exited with code 255.
<?php
$code = <<<CODE
try{
throw new Exception('test');
}catch(Exception $e)
{
echo "seen";
die('never gonna give up');
}
CODE;
eval($code)