Question

I'm working with Zend Session but I have a problem. If I instanciate a Zend_Session_Namespace('a') and unset it, I continue getting the storage:

$storage = new Zend_Session_Namespace('a');
unset($storage);
$storage = new Zend_Session_Namespace('a');
echo $storage->id;

And get the data I stored before.

Any idea???

No correct solution

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top