ID: 29253 User updated by: camka at email dot ee Reported By: camka at email dot ee -Status: Feedback +Status: Open Bug Type: Arrays related Operating System: Unix, Win2000 -PHP Version: 4.3.7 +PHP Version: 4.3.8 New Comment:
last win snapshot <?php error_reporting(E_ALL); $zz = $GLOBALS; $ff = 'ff'; array_diff_assoc($GLOBALS, $zz); var_dump($zz); // this line crashes apache when optimizer is running ?> when optimizer is disabled gives the following notice message and doesn't crash Notice: Undefined variable: zz in c:\wwwww\test\crashme.php on line 7 NULL seems like array_diff parameters are being unset inside the function Previous Comments: ------------------------------------------------------------------------ [2004-07-20 02:44:32] [EMAIL PROTECTED] Please try using this CVS snapshot: http://snaps.php.net/php4-STABLE-latest.tar.gz For Windows: http://snaps.php.net/win32/php4-win32-STABLE-latest.zip ------------------------------------------------------------------------ [2004-07-19 09:58:31] camka at email dot ee Description: ------------ when using array_diff with one of the parameters is $GLOBALS seems like the whole variable scope is messed up. Reproduce code: --------------- <?php $zz = $GLOBALS; $gg = 'afad'; var_dump(array_diff_assoc($GLOBALS, $zz)); echo $gg; // strange behavour. $gg is like an array!!! // var_dump($gg); // this call fails apache ?> Expected result: ---------------- expect seeing 'afad' and empty array; Actual result: -------------- array(0) { } Arra the length of "Arra" string depends on the length of $gg length; if uncomment the last line - apache child fails [Mon Jul 19 10:26:00 2004] [notice] child pid 10946 exit signal Segmentation fault (11 ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=29253&edit=1
