Home >Backend Development >PHP Problem >How to set up only one user online in php

How to set up only one user online in php

藏色散人
藏色散人Original
2021-11-26 09:13:591352browse

How to set up only one user online in php: 1. Add a field to the user table to store the unique string generated by session_id(); 2. Store the string in the field when the user logs in for the first time; 3. Overwrite this field value with a new string; 4. Just implement the judgment in the parent class construction method.

How to set up only one user online in php

#The operating environment of this article: Windows7 system, PHP7.1, Dell G3.

How to set up only one user online in php?

1. Use the session_id() function

2. Add a field to the user table to store the unique string generated by session_id()

3. User 1 logs in for the first time The string will be stored in the field

4. When user 1 logs in here, there will be a new string to overwrite the field value

5. Judging by the parent class construction method, Check the unique string of the logged-in user ID in the current session, whether == session_id()

6. If not equal, the session will be destroyed, and the user will jump to the login page when operating the page.

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to set up only one user online in php. 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