Home  >  Article  >  Backend Development  >  How to set Session expiration time in PHP

How to set Session expiration time in PHP

PHPz
PHPzOriginal
2023-04-04 13:59:234060browse

When writing PHP websites, developers often store user data in Session to implement functions such as cross-page information transfer and user authentication. By default, PHP Sessions are automatically cleared when the session ends, or expire when the browser is closed. However, sometimes developers need to control the session expiration time more precisely to keep the session valid for a certain period of time. This article will introduce how to set the Session expiration time in PHP.

  1. Basic concepts

Before we start, we need to understand the following two concepts:

Session ID: Each user establishes a session with the server , a unique Session ID is assigned to identify the user's session state.

Session variables: Session variables refer to variables stored on the server side during the session. They are used to store user data.

  1. How to modify the Session expiration time

2.1. Modify the php.ini file

PHP’s session expiration time can be in the php.ini configuration file Set, using the session.gc_maxlifetime parameter, in seconds. By default, its value is 1440 seconds, which is 24 minutes. You can modify it according to the following steps:

  1. Open the php.ini configuration file.
  2. Find the following line: session.gc_maxlifetime = 1440.
  3. Change 1440 to the desired expiration time in seconds.
  4. Save and close the php.ini file.
  5. Restart the web server.

Modifying this parameter will affect the Session expiration time of all PHP scripts.

2.2. Set in code

If you only need to modify the Session expiration time of a certain page, or dynamically set the Session expiration time as needed in the code, you can use the following code:

session_start(); // Start Session
$expireTime = 60*30; // Expiration time is 30 minutes
$_SESSION['timeout'] = time () $expireTime; //Set the expiration time of the specified Session variable
?>

In the code, use $_SESSION['timeout'] to specify a Session variable related to the expiration time. It stores the value of the current timestamp (time()) plus the expiration time ($expireTime). Each time you visit the page, you can check whether this variable has expired. If it has expired, call the session_destroy() function to destroy the Session.

2.2.1. By modifying the Session life cycle parameters

You can also use the session_set_cookie_params() function to set the Session expiration time in the code. This function can accept multiple parameters, the most important of which is the Session life cycle parameter, which determines the expiration time of the Session.

The following is an example:

session_start();
$expireTime = 60*30; // The expiration time is 30 minutes
session_set_cookie_params( $expireTime);
?>

This code will set the Session expiration time to 30 minutes.

  1. Other Notes

Whether it is by modifying the php.ini file, setting it in the code, or setting it through Session life cycle parameters, there are the following precautions:

  • The expiration time of Session is not absolutely accurate because it relies on the PHP garbage collection mechanism, and the actual expiration time may be inconsistent with the set time due to multiple factors.
  • If you are using multi-server load balancing technology, you need to ensure that the Session IDs of all servers are the same, otherwise Session inconsistency will occur.

Session is a very important feature when writing PHP applications. By setting the session expiration time, you can better protect the security of user data and avoid unnecessary waste of server resources.

The above is the detailed content of How to set Session expiration time 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