search

php check if online

Oct 30, 2019 pm 02:06 PM
php

php check if online

How to check whether the user is online in PHP:

First create a new tags.php file and place it under the configuration directory Conf.

<?php
 /*
 * 添加行为
 *
 */
 return array(
    &#39;action_begin&#39; => array(&#39;OnlineCheck&#39;),
 );
 ?>

Define specific functions

<?php
 /*
 * 定义行为: 在线更新
 */
 class OnlineCheckBehavior extends Behavior {
    //行为参数
    protected $options = array(
        &#39;ONLINE_CHECK&#39; => true, // 默认进行在线
        &#39;ONLINE_CHECK_TIME&#39; => 10, // 默认5分钟未活动,说明已下线
    );
    public function run(&$params) {
        if (C(&#39;ONLINE_CHECK&#39;)) {
            // 更新session
            if ((session(&#39;?login_account&#39;)) && (time() - session(&#39;access_time&#39;) > 60)) {
                session(&#39;access_time&#39;, time());
            }
            // 在线更新
            $ip = ip2long(get_client_ip());
            $online = M(&#39;Online&#39;);
            // 先删除在线表中 超过5分钟未活动的记录
            //$sql = &#39; delete from __TABLE__  where  &#39;;
            $map[&#39;lasttime&#39;] = array(&#39;lt&#39;, time() - C(&#39;ONLINE_CHECK_TIME&#39;) * 60);
            $icount = $online->where($map)->delete();
            if (session(&#39;?login_account&#39;)) { // 如果是登录用户
                $map = array();
                $map[&#39;uid&#39;] = session(&#39;login_uid&#39;);
                $map[&#39;lastip&#39;] = $ip;
                $id = $online->where($map)->getField(&#39;id&#39;);
                if (empty($id)) { // 不存在在线记录,则清空session
                    session(null);
                } else {
                    $map = array();
                    $map[&#39;id&#39;] = array(&#39;eq&#39;, $id);
                    $data[&#39;lasttime&#39;] = time();
                    $data[&#39;lastip&#39;] = $ip;
                    $online->where($map)->save($data);
                }
            } else { // 不是登录用户  游客
                unset($map);
                $map[&#39;lastip&#39;] = array(&#39;eq&#39;, $ip);
                $id = $online->where($map)->getField(&#39;id&#39;);
                //dump($id);
                if (empty($id)) { // 不存在在线记录, 则添加
                    $data = array();
                    $data[&#39;uid&#39;] = 0;
                    $data[&#39;account&#39;] = &#39;Guest&#39;;
                    $data[&#39;nickname&#39;] = &#39;游客&#39;;
                    $data[&#39;lasttime&#39;] = time();
                    $data[&#39;lastip&#39;] = $ip;
                    $online->add($data);
                } else {
                    $map = array();
                    $map[&#39;id&#39;] = array(&#39;eq&#39;, $id);
                    $data[&#39;lasttime&#39;] = time();
                    $data[&#39;lastip&#39;] = $ip;
                    $online->where($map)->save($data);
                }
            }
        }
    }
 }
 ?>

Add specific login methods

// 登录检测
    public function checkLogin() {
        // $this->redirect($url);
        $username = strtolower($this->_param(&#39;usr&#39;));
        $pwd = $this->_param(&#39;pwd&#39;);
        $url = $this->_param(&#39;url&#39;); // 目标地址
        $is_error = false;
        if (empty($username) or empty($pwd)) {
            $this->assign(&#39;error_msg&#39;, &#39;用户名和口令不能为空&#39;);
            $is_error = true;
        }
        if (!$is_error) {
            $model = M(&#39;Usr&#39;);
            $map[&#39;account&#39;] = $username;
            $map[&#39;upwd&#39;] = strtoupper(md5($pwd));
            $icount = $model->where($map)->count();
            if ($icount == 1) {
                $list = $model->where($map)->find();
                // 检测用户是否在线
                if ($this->isOnline($list[&#39;id&#39;])) {
                    // <editor-fold defaultstate="collapsed" desc="if开始">
                    if ($list[&#39;status&#39;]) {
                        session(&#39;login_account&#39;, $username);
                        session(&#39;login_nickname&#39;, $list[&#39;nickname&#39;]);
                        session(&#39;last_time&#39;, toDate($list[&#39;last_time&#39;]));
                        if ($list[&#39;last_ip&#39;]) {
                            session(&#39;last_ip&#39;, long2ip($list[&#39;last_ip&#39;]));
                        } else {
                            session(&#39;last_ip&#39;, get_client_ip());
                        }
                        session(&#39;login_count&#39;, $list[&#39;login_count&#39;]);
                        session(&#39;login_uid&#39;, $list[&#39;id&#39;]);
                        session(&#39;login_pwd&#39;, $list[&#39;upwd&#39;]);
                        session(&#39;access_time&#39;, time());  //用户最后点击页面时间  session超时使用
                        ///
                        $map[&#39;id&#39;] = $list[&#39;id&#39;];
                        $data[&#39;last_time&#39;] = time();
                        $data[&#39;last_ip&#39;] = ip2long(get_client_ip());
                        $model->where($map)->save($data);
                        $model->where($map)->setInc(&#39;login_count&#39;, 1);
                        // 检测是否有同一IP的记录,有更新,否则 添加
                        $online = M(&#39;Online&#39;);
                        $map = array();
                        $map[&#39;lastip&#39;] = ip2long(get_client_ip());
                        $online_id = $online->where($map)->getField(&#39;id&#39;);
                        if (empty($online_id)) {
                            // 插入在线用户表
                            $data = array();
                            $data[&#39;uid&#39;] = $list[&#39;id&#39;];
                            $data[&#39;account&#39;] = $list[&#39;account&#39;];
                            $data[&#39;nickname&#39;] = $list[&#39;nickname&#39;];
                            $data[&#39;lasttime&#39;] = time();
                            $data[&#39;lastip&#39;] = ip2long(get_client_ip());
                            $online->add($data);
                        }else{
                             // 更新在线用户表
                            $data = array();
                            $data[&#39;uid&#39;] = $list[&#39;id&#39;];
                            $data[&#39;account&#39;] = $list[&#39;account&#39;];
                            $data[&#39;nickname&#39;] = $list[&#39;nickname&#39;];
                            $data[&#39;lasttime&#39;] = time();
                            //$data[&#39;lastip&#39;] = ip2long(get_client_ip());
                            $online->where($map)->save($data);
                        }
                    } else {
                        $is_error = true;
                        $this->assign(&#39;error_msg&#39;, &#39;此用户已被禁止登录!&#39;);
                    }
                    // </editor-fold>   if 结束
                } else {
                    $is_error = true;
                    $this->assign(&#39;error_msg&#39;, &#39;此用户名已在其他电脑登陆,请&#39; . C(&#39;ONLINE_CHECK_TIME&#39;) .&#39;分钟后再试!&#39;);
                }
            } else {
                $is_error = true;
                $this->assign(&#39;error_msg&#39;, &#39;错误的用户名或口令!&#39;);
            }
        }
        if ($is_error) {
            $this->display(&#39;login&#39;);
        } else {
            $this->redirect(&#39;Index/index&#39;);
 //            if (empty($url)) {
 //                $this->redirect(&#39;Index/index&#39;);
 //            } else {
 //                $this->redirect($url);
 //            }
        }
    }
  /**
     * 检测用户是否在线
     * @access private
     * @param int $uid 用户ID
     * @return Boolean true=不在线
     */
    private function isOnline($uid) {
        $ip = ip2long(get_client_ip());
        $online = M(&#39;Online&#39;);
        $map[&#39;uid&#39;] = array(&#39;eq&#39;, $uid);
        $list = $online->where($map)->find();
        if (empty($list)) { // 不存在
            return true;
        } else { // 存在,检测IP是否一致,否则,检测是否超过5分钟
            if ($list[&#39;lastip&#39;] == $ip) {
                return true;
            } else {
                if ($list[&#39;lasttime&#39;] < time() - C(&#39;ONLINE_CHECK_TIME&#39;) * 60) {
                    return true;
                } else {
                    return false;
                }
            }
        }
    }

Recommended: php server

The above is the detailed content of php check if online. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
ACID vs BASE Database: Differences and when to use each.ACID vs BASE Database: Differences and when to use each.Mar 26, 2025 pm 04:19 PM

The article compares ACID and BASE database models, detailing their characteristics and appropriate use cases. ACID prioritizes data integrity and consistency, suitable for financial and e-commerce applications, while BASE focuses on availability and

PHP Secure File Uploads: Preventing file-related vulnerabilities.PHP Secure File Uploads: Preventing file-related vulnerabilities.Mar 26, 2025 pm 04:18 PM

The article discusses securing PHP file uploads to prevent vulnerabilities like code injection. It focuses on file type validation, secure storage, and error handling to enhance application security.

PHP Input Validation: Best practices.PHP Input Validation: Best practices.Mar 26, 2025 pm 04:17 PM

Article discusses best practices for PHP input validation to enhance security, focusing on techniques like using built-in functions, whitelist approach, and server-side validation.

PHP API Rate Limiting: Implementation strategies.PHP API Rate Limiting: Implementation strategies.Mar 26, 2025 pm 04:16 PM

The article discusses strategies for implementing API rate limiting in PHP, including algorithms like Token Bucket and Leaky Bucket, and using libraries like symfony/rate-limiter. It also covers monitoring, dynamically adjusting rate limits, and hand

PHP Password Hashing: password_hash and password_verify.PHP Password Hashing: password_hash and password_verify.Mar 26, 2025 pm 04:15 PM

The article discusses the benefits of using password_hash and password_verify in PHP for securing passwords. The main argument is that these functions enhance password protection through automatic salt generation, strong hashing algorithms, and secur

OWASP Top 10 PHP: Describe and mitigate common vulnerabilities.OWASP Top 10 PHP: Describe and mitigate common vulnerabilities.Mar 26, 2025 pm 04:13 PM

The article discusses OWASP Top 10 vulnerabilities in PHP and mitigation strategies. Key issues include injection, broken authentication, and XSS, with recommended tools for monitoring and securing PHP applications.

PHP XSS Prevention: How to protect against XSS.PHP XSS Prevention: How to protect against XSS.Mar 26, 2025 pm 04:12 PM

The article discusses strategies to prevent XSS attacks in PHP, focusing on input sanitization, output encoding, and using security-enhancing libraries and frameworks.

PHP Interface vs Abstract Class: When to use each.PHP Interface vs Abstract Class: When to use each.Mar 26, 2025 pm 04:11 PM

The article discusses the use of interfaces and abstract classes in PHP, focusing on when to use each. Interfaces define a contract without implementation, suitable for unrelated classes and multiple inheritance. Abstract classes provide common funct

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version