I've created an error handler (PHP version is 4.0.6) and it works fine for errors I trigger and for E_NOTICES.
However, if I do this:
where xxx is an undefined function, I get the PHP error message instead of my error handler being called.
Does anyone know why?
However, if I do this:
Code:
<? xxx(); ?>
where xxx is an undefined function, I get the PHP error message instead of my error handler being called.
Does anyone know why?