Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的服务器上有 2 个应用程序,每个都使用 $_SESSION['user']。如果我登录到一个应用程序,我会自动登录到另一个应用程序。问题是两个会话使用不同的 ID,所以我自动登录到我的合作伙伴帐户。如何在不更改会话名称的情况下防止这种情况发生。?
利用
session_name('ses_mysite'); session_start();
它为我工作:)
或使用
session_set_cookie_params();