Home Backend Development PHP Problem How to delete the value in session in php

How to delete the value in session in php

Aug 21, 2020 am 09:18 AM
php

How to delete session value in php: 1. Use [unset($_SESSION['xxx'])] to delete a single session; 2. Use [session_unset()] to delete multiple sessions; 3. Use [session_destroy 】Clear the session.

How to delete the value in session in php

Recommendation: "PHP Video Tutorial"

Several ways to delete session in php

1. unset($_SESSION['xxx']) deletes a single session, and unset($_SESSION['xxx']) is used to unregister a registered session variable. Its function is the same as session_unregister().

<?php
         // 初始化session.
         session_start();
         /*** 删除所有的session变量..也可用unset($_SESSION[xxx])逐个删除。****/
         $_SESSION = array();
         /***删除sessin id.由于session默认是基于cookie的,所以使用setcookie删除包含session id的cookie.***/
         if (isset($_COOKIE[session_name()])) {
               setcookie(session_name(), '', time()-42000, '/');
          }
         // 最后彻底销毁session.
         session_destroy();
?>
Copy after login

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 no longer register the $_session variable either.

2. session_unset() or $_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.

Summary:

session_destroy is to log out all session variables and end the session session;

If you want to delete some session data, you can use the unset() function or session_destroy( )function. The function of unset() function is to release the specified session variable. The calling format is as follows:

<?php
unset($_SESSION['jugelizi']);
?>
Copy after login

session_destroy() function is to delete all sessions. The calling format is as follows:

<?PHP session_destroy(); ?>
Copy after login

Tip: session_destroy () will reset the session and you will lose all saved session data.

session_unset() does not unregister the session variables, but clears the values ​​of all session variables.

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

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

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

CakePHP Date and Time

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

CakePHP Project Configuration

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

CakePHP File upload

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

CakePHP Routing

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

Discuss CakePHP

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

How To Set Up Visual Studio Code (VS Code) for PHP Development

CakePHP Quick Guide CakePHP Quick Guide Sep 10, 2024 pm 05:27 PM

CakePHP Quick Guide

See all articles