最好的安全性是什么,如果未设置会话,则下次访问而不是重新创建会话时,加载时间会更好吗?
取消设置将破坏特定的会话变量,而session_destroy()将破坏该用户的所有会话数据。
session_destroy()
实际上,取决于应使用哪个应用程序。只要记住以上几点即可。
unset($_SESSION['name']); // will delete just the name data session_destroy(); // will delete ALL data associated with that user.