search
HomeBackend DevelopmentPHP TutorialIn-depth understanding of PHP's Session mechanism

Today I was reading Brother Niao’s article on how to set a session that expires strictly in 30 minutes
I became interested in the session mechanism of php, and I found some information on the Internet to study it.

The php session management system supports many configuration options, which can be set in your own php.ini file
In the configuration of session in php.ini, session.save_handler defines the name of the processor to store and obtain data associated with the session. The default is files. It should be noted that individual extensions can register their own save_handlers; registered processing The program is available on a per-installation basis by referencing phpinfo(). See session_set_save_handler().
There are two ways to handle sessions in PHP configuration, one is the default files, and the other is user-defined.
1. session.save_handler=files
1. session_start()
1.1 session_start() is the beginning of the session mechanism. It has a certain probability of starting garbage collection. Because the session is stored in a file, PHP's own garbage collection is invalid for the SESSION session. SESSION recycling requires deleting the file. This probability is Determined according to the configuration of php.ini (session.save_path).
Some systems have session.gc_probability = 0, which means the probability is 0, and garbage collection is implemented through cron scripts.

<code>            session<span>.gc</span>_probability = <span>1</span>
            session<span>.gc</span>_divisor = <span>100</span>
            session<span>.gc</span>_maxlifetime = <span>1440</span>//过期时间 默认<span>24</span>分钟
            //概率是 session<span>.gc</span>_probability/session<span>.gc</span>_divisor 结果 <span>1</span>/<span>100</span>, 
            //不建议设置过小,因为session的垃圾回收,是需要检查每个文件是否过期的。
            session<span>.save</span>_path = //好像不同的系统默认不一样,有一种设置是 <span>"N;/path"</span>
            //这是随机分级存储,这个样的话,垃圾回收将不起作用,需要自己写脚本</code>

1.2 Session will determine whether there is currently $_COOKIE[session_name()]; session_name() returns the COOKIE key value that saves session_id. This value can be found from php.ini

<code><span>session.name </span>=<span> PHPSESSID //默认值PHPSESSID</span></code>

1.3 If it does not exist, a session_id will be generated, and then Pass the generated session_id to the client as the COOKIE value. It is equivalent to executing the following COOKIE operation. Note that this step executes the setcookie() operation. The COOKIE is sent in the header. There cannot be output before this. PHP has another function session_regenerate_id(). If you use this function , there can be no output before this.

<code>    setcookie(session_name(),
              session_id(),
              session.cookie_lifetime,<span>//</span>默认<span>0</span>
              session.cookie_path,<span>//</span>默认<span>'/'</span>当前程序跟目录下都有效
              session.cookie_domain,<span>//</span>默认为空
              )</code>

1.4 If exists then session_id = $_COOKIE[session_name];
Then go to the folder specified by session.save_path to find the file named 'SESS_'. session_id().
Read the content of the file, deserialize it, and put it into the $_SESSION global variable
2. Assign value to $
_SESSION For example, if you add a new value $_SESSION['test']= 'test'; then this $_SESSION will only be maintained in the content. When the script execution ends, the value of $_SESSION will be written to the session_id specified folder, and then close the related resources. At this stage, it is possible to perform an operation to change the session_id.
For example, destroy an old session_id and generate a new session_id. Half of it is used for custom session operations and role conversion. For example, Drupal. An anonymous user of Drupal has a SESSION. When it logs in, it needs to use a new session_id.

<code>if (<span>isset($_COOKIE[<span>session_name()</span>])</span>) {
          <span>setcookie(<span>session_name()</span>, <span>''</span>, <span>time()</span> - <span>42000</span>, <span>'/'</span>)</span>;<span>//旧session cookie过期</span>
        }
        <span>session_regenerate_id()</span>;<span>//这一步会生成新的session_id</span><span>//session_id()返回的是新的值</span></code>

3. Write SESSION operation
At the end of the script, the SESSION write operation will be performed, and the value in $_SESSION will be written to the file named by session_id. It may already exist, and a new file may need to be created.
4. Destroy SESSION
The COOKIE sent by SESSION is generally an instant COOKIE and is stored in memory. It will expire when the browser is closed. If you need to force the expiration manually, such as logging out instead of closing the browser, then you need to destroy the SESSION in the code. There are many ways.
4.1 setcookie(session_name(), session_id(), time() - 8000000, ..);//Execute before logging out
4.2 usset($_SESSION);//This will delete all $_SESSION data. After refreshing, COOKIE is passed, but there is no data.
4.3 session_destroy();//This function is more thorough, delete $_SESSION, delete the session file, and session_id
When refreshing again without closing the browser, COOKIE will be sent to 2 and 3, but the data cannot be found

2. session.save_handler=user
In the PHP manual, there is session_set_save_handler to set a user-defined session storage function. If you want to use a method other than PHP's built-in session storage mechanism, you can use this function. For example, you can customize the session storage function to store session data in a database.
For details, please check the PHP manual http://php.net/manual/zh/function.session-set-save-handler.php

The above has introduced an in-depth understanding of PHP's Session mechanism, including aspects of it. I hope it will be helpful to friends who are interested in PHP tutorials.

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
How can you check if a PHP session has already started?How can you check if a PHP session has already started?Apr 30, 2025 am 12:20 AM

In PHP, you can use session_status() or session_id() to check whether the session has started. 1) Use the session_status() function. If PHP_SESSION_ACTIVE is returned, the session has been started. 2) Use the session_id() function, if a non-empty string is returned, the session has been started. Both methods can effectively check the session state, and choosing which method to use depends on the PHP version and personal preferences.

Describe a scenario where using sessions is essential in a web application.Describe a scenario where using sessions is essential in a web application.Apr 30, 2025 am 12:16 AM

Sessionsarevitalinwebapplications,especiallyfore-commerceplatforms.Theymaintainuserdataacrossrequests,crucialforshoppingcarts,authentication,andpersonalization.InFlask,sessionscanbeimplementedusingsimplecodetomanageuserloginsanddatapersistence.

How can you manage concurrent session access in PHP?How can you manage concurrent session access in PHP?Apr 30, 2025 am 12:11 AM

Managing concurrent session access in PHP can be done by the following methods: 1. Use the database to store session data, 2. Use Redis or Memcached, 3. Implement a session locking strategy. These methods help ensure data consistency and improve concurrency performance.

What are the limitations of using PHP sessions?What are the limitations of using PHP sessions?Apr 30, 2025 am 12:04 AM

PHPsessionshaveseverallimitations:1)Storageconstraintscanleadtoperformanceissues;2)Securityvulnerabilitieslikesessionfixationattacksexist;3)Scalabilityischallengingduetoserver-specificstorage;4)Sessionexpirationmanagementcanbeproblematic;5)Datapersis

Explain how load balancing affects session management and how to address it.Explain how load balancing affects session management and how to address it.Apr 29, 2025 am 12:42 AM

Load balancing affects session management, but can be resolved with session replication, session stickiness, and centralized session storage. 1. Session Replication Copy session data between servers. 2. Session stickiness directs user requests to the same server. 3. Centralized session storage uses independent servers such as Redis to store session data to ensure data sharing.

Explain the concept of session locking.Explain the concept of session locking.Apr 29, 2025 am 12:39 AM

Sessionlockingisatechniqueusedtoensureauser'ssessionremainsexclusivetooneuseratatime.Itiscrucialforpreventingdatacorruptionandsecuritybreachesinmulti-userapplications.Sessionlockingisimplementedusingserver-sidelockingmechanisms,suchasReentrantLockinJ

Are there any alternatives to PHP sessions?Are there any alternatives to PHP sessions?Apr 29, 2025 am 12:36 AM

Alternatives to PHP sessions include Cookies, Token-based Authentication, Database-based Sessions, and Redis/Memcached. 1.Cookies manage sessions by storing data on the client, which is simple but low in security. 2.Token-based Authentication uses tokens to verify users, which is highly secure but requires additional logic. 3.Database-basedSessions stores data in the database, which has good scalability but may affect performance. 4. Redis/Memcached uses distributed cache to improve performance and scalability, but requires additional matching

Define the term 'session hijacking' in the context of PHP.Define the term 'session hijacking' in the context of PHP.Apr 29, 2025 am 12:33 AM

Sessionhijacking refers to an attacker impersonating a user by obtaining the user's sessionID. Prevention methods include: 1) encrypting communication using HTTPS; 2) verifying the source of the sessionID; 3) using a secure sessionID generation algorithm; 4) regularly updating the sessionID.

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.