|
|
|
I found it : http://bugs.php.net/bug.php?id=31675
Julien – can this issue be closed, then?
Used solution corrupts error handlers stack.
E.g. source error stack: I'm going to fix it. Fixed for the trunk and release-1.6 branch (r11165 and r11166).
issue still produces unit tests problems (see
Problem is actually fixed now, but it de-masked another problem (see
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
restore_error_handler() should be used in the parseIniFileErrorHandler(), like this :
But this seems to bug as well, and seems to be a PHP bug ( or feature ). (PHP 5.2.6)
– restore_error_handler() looks like to be ignored while written in a error handler callback function –
To fix the bug, set_error_handler($oldHandler) works, like this :
Rob, what do you think about that ?