I am trying to create a system where by adding one include, I can set PHP to display errors (the php.ini file prevents this). In other words:
<?php
include "showerrors.php";
// Produce Error
ERROR;
?>
This would create a parse error and "showerrors.php" does not get executed, meaning that the error never gets shown. However, if "showerrors.php" does get executed, the error would be shown.