ID: 11527
User Update by: [EMAIL PROTECTED]
Status: Open
Bug Type: *Session related
Operating system: FreeBSD 4.3 STABLE
PHP Version: 4.0.5
Description: session_unregister() seems not work properly

Well I found a solution. Just replace session_unregister()
by unset() statement.

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

[2001-06-17 20:06:04] [EMAIL PROTECTED]
It seems that session_unregister() should "remove" a var
from the session, isn't it ?

-------test.php
<?php
// First script, register the var
session_start() ;
session_register("somevar") ;
$HTTP_SESSION_VARS["somevar"] = "abc" ;
?>
<a href="test2.php">Click Here</a>

-------test2.php
<?php
// Second script, unregister the var
session_start() ;
echo "somevar is " . $HTTP_SESSION_VARS["somevar"] ;
session_unregister("somevar") ;
?>
<br><a href="test3.php">Click here again</a>

--------test3.php
<?php
// The third script, see the result
session_start() ;
print_r($HTTP_SESSION_VARS) ;
session_unset() ;
print_r($HTTP_SESSION_VARS) ;
session_destroy() ;
?>

With the enable-trans-sid turned on, the result of the third
script is :
Array ( [somevar] => abc ) Array ( )

Is it a bug ?
How shoud I do if I want to "remove" some variables from
session but KEEP THE OTHERS unchanged ?

Best Regards

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


Full Bug description available at: http://bugs.php.net/?id=11527


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to