ID: 35459 User updated by: eugenio dot tacchini at unicatt dot it Reported By: eugenio dot tacchini at unicatt dot it -Status: Bogus +Status: Open -Bug Type: Scripting Engine problem +Bug Type: Documentation problem Operating System: Linux PHP Version: 4.4.1 New Comment:
You are right but this change breaks compatibility with applications developed with a previous PHP version, and I haven't found mention in the change log nor here: http://it2.php.net/set_error_handler. Is this a documentation bug? Previous Comments: ------------------------------------------------------------------------ [2005-11-29 00:04:55] [EMAIL PROTECTED] Right, because you could crash PHP by modifying error context. That's why you're not allowed to modify it anymore. ------------------------------------------------------------------------ [2005-11-28 23:58:53] eugenio dot tacchini at unicatt dot it I have tried the code on php-4.3.4-Win32 and I get Undefined index here: '' as expected. ------------------------------------------------------------------------ [2005-11-28 23:56:10] eugenio dot tacchini at unicatt dot it Yes, it is, but that piece of code doesn't produce the error in previous versions of PHP, do it? ------------------------------------------------------------------------ [2005-11-28 23:43:05] [EMAIL PROTECTED] The error message is pretty clear, isn't it? ------------------------------------------------------------------------ [2005-11-28 23:39:15] eugenio dot tacchini at unicatt dot it Description: ------------ This bug http://bugs.php.net/bug.php?id=25922 seems to be still reprodusabe in PHP 4.4.1. PHP doesn't crash but produce the message reported below. Reproduce code: --------------- function my_error_handler( $error, $errmsg = '', $errfile = '', $errline = 0, $errcontext = '' ) { $errcontext = ''; } set_error_handler( 'my_error_handler' ); function test( $headers = '' ) { echo "Undefined index here: '{$data['HTTP_HEADER']}'\n"; } test(); Expected result: ---------------- Undefined index here: '' Actual result: -------------- Fatal error: User error handler must not modify error context in.... ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=35459&edit=1
