My problem is this: I have errors in my PHP code but they're not being displayed. My script is just terminating when the error is encountered. After much poking, I've deduced that the errors are strict mode errors but I'm having trouble fixing them because the error message is not being displayed.
I'm running PHP 5.4.4 on Debian 3.2 using development config settings ( error_reporting = E_ALL ; display_errors = on )
After much reading I noticed this "Most of E_STRICT errors are evaluated at the compile time thus such errors are not reported..." in the PHP documentation for error reporting (http://php.net/manual/en/function.error-reporting.php#refsect1-function.error-reporting-notes)
How can I see the compile time errors?