fsteinbauer
fsteinbauer

Reputation: 161

Get Session expiration time in Zend Framework

Is there a way in Zend Framework or PHP to get the time until the Session(PHPSESSID cookie) expires?

Upvotes: 10

Views: 11257

Answers (1)

Vika
Vika

Reputation: 3285

I don't know of any method provided by the framework to achieve this. But as soon as you know where ZF stores expiration time for its namespaces, you might be able to do something like this:

$session = new Zend_Session_Namespace( 'Zend_Auth' );
$session->setExpirationSeconds( 60 );

$timeLeftTillSessionExpires = $_SESSION['__ZF']['Zend_Auth']['ENT'] - time();

Upvotes: 16

Related Questions