Brief description of Session principle_PHP tutorial

WBOY
Release: 2016-07-13 10:36:33
Original
1106 people have browsed it

The significance of Session is probably understood by everyone who is engaged in web development. It is just to solve the problems caused by HTTP being a stateless protocol, so I won’t go into details. The main thing I want to talk about here is how the server and the client interact using sessions.

General process of Session work

Look at the flow chart below:

Brief description of Session principle_PHP tutorial

When a user visits the site for the first time, PHP will use the session_start() function to create a session ID for the user. This is the unique identification for the user. Each visiting user will get a unique session ID. This session ID will be stored in the cookie in the response header and then sent to the client. This way the client will have a session ID given to him by the site.

When the user visits the site for the second time, the browser will send the locally stored cookie (which contains the session ID obtained last time) to the server along with the request. After receiving the request, the server will detect whether If there is a session ID, the corresponding session file will be found and the information in it will be read; if not, a new one will be created just like the first time.

Usually the exit function of the site is actually to call the session_destroy() function (it may be more complicated), delete the user's session file, and then clear the user's cookies. In this way, there is no contact between the client and the server.

The red box in the picture is a complete HTTP request. Because HTTP is stateless, after a request is completed, the client and the server no longer have any relationship, and no one knows each other. However, due to some needs (such as maintaining login status, etc.), the server and the client must be kept in contact, and the session ID becomes the medium for this contact.

Client work

Through the above analysis, we can know that session actually relies on cookies. When a user visits a certain site, the browser will automatically search for available cookies based on the site the user visits. If there are available cookies, they will be sent with the request. Sent to the server. Each time a response from the server is received, the local cookie information is updated.

Of course, you can also use GET to pass the session ID, but GET is not recommended because it is unsafe.

Server-side work

As you can see from the flow chart above, the server actually stores some of the data generated in the session file. The name of the file is "sess" plus the session ID, and the storage location of these files. It is the session.savepath value found by phpinfo().

Brief description of Session principle_PHP tutorial

We can clearly see from the above picture that the server and client save the same session ID information, which is the key to keeping the two in contact.

The negative impact of Session

There are advantages and disadvantages. The main problem brought by sessions is the impact on performance. You can imagine that for a web site with tens of millions of users, if each user saves the session file, then every time the user accesses Just searching for the corresponding session file will consume a lot of system resources. So at this time it is necessary to make some custom settings for session storage, such as sub-directories or hashes, etc. In addition to saving to the session file, you can also abandon the session function that comes with PHP, implement the session yourself, and store the session information in the database. In this way, it is best to set up the cache of the database, otherwise tens of millions of data will be processed too much. Frequent retrieval is also quite resource consuming.

Clear Session

This connection between the client and the server must be time-limited, so the session needs to be cleared regularly. This issue needs to be considered in two aspects. One is to clear the server-side session file, and the other is to clear the client's cookie information, because both of them save half of the information.

The PHP GC process can scan the session storage directory to clear session files, but this process is particularly resource-consuming, so PHP defaults to a 1% chance to clean up an expired session when a session is started, so it does not mean that a user When a session expires, its corresponding session file will be cleared immediately, and there is a 99% chance that it will not be cleared. This requires us programmers to do it ourselves. You can store an expiration time in the session information, and the value is the time of the user's last visit. When a user visits, the current time is subtracted from the last access time to see if it times out. If it times out, the corresponding session file is deleted, and the Expires attribute of the cookie is set to a negative value so that the cookie information on the client side also expires. In this way, the browser It will be deleted automatically.

PHP related Session common functions

  • session_start(): Start the session, there is nothing to say about this. Open the session file based on the session ID. If there is no session ID, create an ID and corresponding session file
  • $SESSION[] array: a global array that stores user information. In addition to storing the data in $SESSION, the session file will actually store other Information, such as id, etc.
  • sessionunset(): Clear the $SESSION array. It clears the values ​​in the array, while the $SESSION variable is still exists, and unset($SESSION) is a completely different concept
  • sessioncommit(): Submit session data and end the session, write $SESSION data to the file and end the session. In fact, when a page is executed After finishing, php will automatically perform the same operation as this function. So this function is rarely used
  • session_destroy(): Log out of the session. This means closing the session and deleting the corresponding session file. Cut off the connection between client and server.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/738551.htmlTechArticleThe significance of the existence of Session is estimated to be understood by everyone who does web development, just to solve the problem of HTTP I won’t go into details about the problems caused by stateless protocols. The main thing I want to say here is service...
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!