Methods to create and destroy sessions in PHP7

angryTom
Release: 2023-04-08 12:18:01
Original
3428 people have browsed it

session can store variables in the user session, used to change the user's session settings, and can be used on all pages in the application. Below we will introduce the methods of creating and destroying sessions in PHP7. I hope it will be helpful to you!

Methods to create and destroy sessions in PHP7

Methods to create and destroy sessions in PHP7

session can save any data type

1, start session session

session_start()
Copy after login

2, set session

$_SESSION['USENAME']="96net.com.cn";
Copy after login

3, destroy session

unset($_SESSION['views']); session_destroy();
Copy after login

About the location where the session is saved on the server, it can be replaced by a database, which can be used by multiple servers at the same time

session_save_path
Copy after login

Recommended related article tutorials:php tutorial

php Chinese website learning topic:php session(including pictures, texts, videos, cases)

The above is the detailed content of Methods to create and destroy sessions in PHP7. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:51cto.com
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
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!