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???

link|improve this question

54% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Try this

$storage->unsetAll();

Or this for a single value:

unset($storage->id);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.