I would like to ask can I require/include a file that has syntax errors and if I cant, the require/include returns a value so that I know that the required/included file has syntax errors and cannot be required/included ?
file.php has syntax error
include('file.php')
if (not file.php included because of syntax)
this
else
that
If you really wanted this type of functionality.
You could try using nikics php parser to see if you can successfully parse the file or not.