Home  >  Article  >  Backend Development  >  How to set up session in php

How to set up session in php

爱喝马黛茶的安东尼
爱喝马黛茶的安东尼Original
2019-08-30 11:33:133106browse

How to set up session in php

Open the editor and comment

First open the php editor sublime, and then create a new file for the upcoming The program should be written with comments.

How to set up session in php

Create a new function

We put the setting and use of session in the function for easy management. Here we create a new one Function use_session.

How to set up session in php

Related recommendations: "PHP Tutorial"

Start session

If you want To use session, we must first start the session. To start the session, we use session_start.

How to set up session in php

Set session

We set session through $_SESSION, the format is as follows:

$_SESSION[ 'session name']=value;

How to set up session in php

Get the value of the session

It is also very simple to get the value of the session , or implemented through $_SESSION, the format is as follows:

$_SESSION['session name'].

How to set up session in php

Destroy session

If we feel that the set session is no longer needed, we can destroy the session and use unset This function is used to destroy the session.

How to set up session in php

session_destroy

In addition to using the unset function to destroy a session in php, you can also use session_destroy to destroy it.

How to set up session in php

The above is the detailed content of How to set up session 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