Agrred, I don't see it in E_ALL, as is mentioned in the ./zend/changelog.
But... value of error_reporting in zend.c still gets set.
According to
http://www.php.net/manual/en/function.error-reporting.php E_ALL is 2047 and E_STRICT is 2048.
I don't know how DBG works, but I assume it registers an error handler, then whatever matches the error_level gets sent. Could it be there is code in DBG's handler that says:
// fictional DBG C code...
if (error_level >= E_ALL)
send_the_error_to_client(error_code, error_msg);
|
Or does DBG rely on some other setting, function, variable than what gets set in PHP's error_reporting();
Anyway.. why would PhpEd display
any errors if Error Level is set to 0?