How to destroy session variables in php?

怪我咯
Release: 2023-03-12 17:08:01
Original
905 people have browsed it

This article mainly introduces the destruction of session variables in PHP. Friends in need can come and refer to it. I hope it will be helpful to everyone

1.What is session?
Equivalent to an access to the server by a client (which can be a browser, app, ftp, etc., and opening several more clients on the same browser can be considered different clients). During this period The server creates a unique identifier (session_id session_name) for this purpose, which is actually an arrayArray(). The beginning and end of the Session does not start with entering the username and password in the business, nor does it end with closing the browser. Ended by refreshing the server and web page

2. Destruction of session variables
Program code
session_unset();
session_destroy();
?>

session_unset()
Release all $_SESSION variables currently created in memory, but do not Delete the session file and do not Release the corresponding session id

session_destroy()
Delete the session file corresponding to the current user and release the session id. The content of the $_SESSION variable in the memory is still retained

[Note] :

Delete session method:

1. unset ($_SESSION['xxx']) Delete a single session, unset($_SESSION['xxx' ]) is used to unregister a registered session variable. Its function is the same as session_unregister(). session_unregister() is no longer used in PHP5 and can be relegated to obsolescence.

unset($_SESSION) This function must not be used, it will destroy the global variable $_SESSION, and there is no feasible way to restore it. Users can also no longer register the $_session variable.

2. $_SESSION=array() deletes multiple sessions

3. session_destroy() ends the current session and clears all resources in the session. . This function will not unset (release) global variables related to the current session, nor will it delete the client's session cookie.PHP's default session is based on cookies. If you want to delete cookies, you must Use the setcookie() function.

Return value: Boolean value.

Function description: This function ends the current session. This function has no parameters, and the return value is true

session_unset() If $_session is used, this function will no longer work. Since PHP5 must use $_session, this function can be relegated to the sidelines.

We can get the steps to delete the session:

①session_start()

②$_SESSION=array()/unset($_session['xxx '])

③session_destroy()

The above is the detailed content of How to destroy session variables in php?. For more information, please follow other related articles on the PHP Chinese website!

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!