Home  >  Article  >  Backend Development  >  php清除和销毁session的方法分析_php技巧

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

WBOY
WBOYOriginal
2016-05-16 20:19:57800browse

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

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

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

<?php
unset($_SESSION['views']);
?>

销毁全部session

<?php
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