在 Zend Framework 中获取 Session 过期时间

发布于 2024-10-20 01:14:48 字数 64 浏览 2 评论 0原文

Zend Framework 或 PHP 中有没有办法获取会话(PHPSESSID cookie)过期之前的时间?

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

安稳善良 2024-10-27 01:14:48

我不知道框架提供了任何方法来实现这一目标。但是,一旦您知道 ZF 在哪里存储其名称空间的过期时间,您就可以执行以下操作:

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

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

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();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文