douxieqiu0651 2015-09-29 17:31
浏览 48
已采纳

Laravel 4.2 - 使用Event时用户会话超时时无法更新我的数据库

I currently have a problem with my laravel(4.2) app.

I want to update my database when the user is offline by the end of session (Automatic).

So I put the lifetime session to 1 minute for testing.

I create an event file :

<?php

Event::listen('auth.login', function($user)
{
    $user->is_online        = 1;
    $user->save();
});

Event::listen('auth.logout', function($user)
{
    $user->is_online        = 0;
    $user->save();
});

Everything works perfectly when I log in or log out manually but when I get automatically disconnected by the end of the session it does not work.

If you have an idea I would appreciate

Thanks.

  • 写回答

2条回答 默认 最新

  • dongyuan2652 2015-09-29 17:51
    关注

    You cannot detect when a user closes their browser or navigates off your site using PHP

    Instead, your best bet is most likely to store each user's last activity time.

    Create a column in your user table along the lines of 'last_activity'. Whenever a user loads a page, update their last_activity to the current time. To get a list of who's online, just query the database for users with last_activity values more recent than 10 min or 20 min.

    you can set session time using this

    $_SESSION['time'] = time();

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 有没有帮写代码做实验仿真的
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥30 vmware exsi重置后登不上
  • ¥15 c++头文件不能识别CDialog
  • ¥15 Excel发现不可读取的内容
  • ¥15 关于#stm32#的问题:CANOpen的PDO同步传输问题