Home  >  Article  >  php教程  >  php清除和销毁session的方法分析

php清除和销毁session的方法分析

WBOY
WBOYOriginal
2016-06-13 09:11:05802browse

php清除和销毁session的方法分析

 这篇文章主要介绍了php清除和销毁session的方法,实例分析了unset()与session_destroy()清除及销毁session的技巧,需要的朋友可以参考下

 

 

本文实例分析了php清除和销毁session的方法。分享给大家供大家参考。具体分析如下:

下面的代码分别用户删除单个session值和全部session

unset() 用于释放一个已经存在的session值.可以使用 session_destroy() 函数销毁全部session.

?

1

2

3

unset($_SESSION['views']);

?>

销毁全部session

?

1

2

3

4

5

Session_start();

//...

session_destroy();

?>

希望本文所述对大家的php程序设计有所帮助。

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