All,
I am using Zend Framework and Zend_Session to do global session management for my application. I plan to clear all sessions on logout and hence am using the fol
This seems to do the trick..
if($this->isStarted())
{
if($this->sessionExists())
{
$this->namespaceUnset("default");
$this->forgetMe();
}
}
Not really answers your question about the error, but is beneficial for the question:
$nsName = 'MyNamespace';
if (Zend_Session::namespaceIsset($nsName)) {
echo $nsName.' exists';
}