I want to log all errors except for undefined variable entries... shouldn't this do it?
error_reporting(E_ERROR | E_WARNING | E_PARSE);
|
I want to log all errors except for undefined variable entries... shouldn't this do it?
|
|||||||||||||||||||||
|
|
These notices are getting logged through your custom error handler. This is the thing you have to adapt. Look for
And you want to check
The advantage of |
|||
|
|
|
It will hide all notices, but this should do it:
|
|||||||||||||||||||
|