Pergunta

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

Nenhuma solução correta

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top