一尘不染

会话未设置,还是session_destroy?

php

最好的安全性是什么,如果未设置会话,则下次访问而不是重新创建会话时,加载时间会更好吗?


阅读 237

收藏
2020-05-29

共1个答案

一尘不染

取消设置将破坏特定的会话变量,而session_destroy()将破坏该用户的所有会话数据。

实际上,取决于应使用哪个应用程序。只要记住以上几点即可。

unset($_SESSION['name']); // will delete just the name data

session_destroy(); // will delete ALL data associated with that user.
2020-05-29