我使用session_start在一个api中启动会话,并希望在另一个api中结束会话。这两个API都是用不同的PHP文件编写的。
我可以从第二个API中销毁在第一个API中创建的PHP会话吗?我无法使用session_destroy从第二个API销毁会话。我没有初始化错误会话。
我也可以给会话提供超时/ cookie吗?
答案 0 :(得分:1)
// Initialize the session.
// If you are using session_name("something"), don't forget it now!
session_start();
// Unset all of the session variables.
$_SESSION = array();
// If it's desired to kill the session, also delete the session cookie.
// Note: This will destroy the session, and not just the session data!
if (ini_get("session.use_cookies")) {
$params = session_get_cookie_params();
setcookie(session_name(), '', time() - 42000,
$params["path"], $params["domain"],
$params["secure"], $params["httponly"]
);
}
// Finally, destroy the session.
session_destroy();
答案 1 :(得分:0)
您是否在第二页上开始了会话?你必须在销毁它之前启动它。
session_start();
session_unset();
session_destroy();
试试。