Php methods for clearing and destroying sessions. Analysis of methods for clearing and destroying sessions in php this article mainly introduces methods for clearing and destroying sessions in php. The example analyzes the skills for clearing and destroying sessions in unset () and session_destroy, analysis of methods for clearing and destroying sessions in php
This article mainly introduces the methods for clearing and destroying sessions in php. The example analyzes the skills for clearing and destroying sessions in unset () and session_destroy (). For more information, see
This document describes how to clear and destroy a session in php. Share it with you for your reference. The specific analysis is as follows:
The following code deletes a single session value and all sessions respectively.
Unset () is used to release an existing session value. you can use the session_destroy () function to destroy all sessions.
?
1 2 3 |
Unset ($ _ SESSION ['View']); ?> |
Destroy all sessions
?
1 2 3 4 5 |
Session_start (); //... Session_destroy (); ?> |
I hope this article will help you with php programming.
This article describes how to clear and destroy sessions in php. The example analyzes the skills of clearing and destroying sessions in unset () and session_destroy...