ID:               16818
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
 Status:           Analyzed
 Bug Type:         Session related
 Operating System: linux
 PHP Version:      4.2.0
 New Comment:

reporter feedback:

do you mean the:
  foreach ($my_array as $element ) {
      unset($element) ;
  }
workaround? or is there any better?


Previous Comments:
------------------------------------------------------------------------

[2002-04-25 07:46:12] [EMAIL PROTECTED]

This bug is a kind of design bug, but it's easily fixed.
We need to get rid of PS(vars) and use PS(http_session_vars) as a main
session storage. There are some other options, though.

To reporter: You know work around mentioned in the manual, right?

------------------------------------------------------------------------

[2002-04-25 05:12:25] [EMAIL PROTECTED]

unsetting several vars saved in a session doesn't work. 
 
eg: 
$HTTP_SESSION_VARS["arr_myfirstarray"] = array("foo","bar"); 
$HTTP_SESSION_VARS["arr_mysecondarray"] = array("foo","bar"); 
 
unset($HTTP_SESSION_VARS["arr_myfirstarray"],$HTTP_SESSION_VARS["arr_mysecondarray"]);

 
doesn't unset the variables in the session. it does unset them for 
the current script, but doesn't remove them from the SESSION-array 
correctly. 

------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=16818&edit=1

Reply via email to