页面会话倒计时器
我编写了一段 PHP 代码,该代码在创建后 5 分钟后终止会话。
我想在页面的一角显示一个计时器,显示 用户距离会话超时还有多少分钟:秒。有没有什么好的 那里有例子吗?
I wrote a PHP code that kills the session after 5 minuets from creation.
I would like to display a timer in the corner of the page that shows the
user how many minutes:seconds till the session times out. Are there any good
examples out there?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样的东西吗?
http://keith-wood.name/countdown.html
这里有一个简单的例子显示如何使用它:
现在我们需要的是一个 UNIX 时间戳(会话结束的时间)。然后我们可以这样修改它:
希望它有帮助!
Something like this?
http://keith-wood.name/countdown.html
There you have a simple example showing how to use it:
So now what we need is a UNIX timestamp (time when session will end). Then we can modify it like this:
Hope it helped!