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.
在我的网站中,
我正在构建 Yahoo API 应用程序。
每当我们从我们的应用程序访问 Yahoo API 时,
雅虎向我们的域返回成功响应。但我的自定义会话值已过期。
我不知道原因。
任何帮助我的赞赏。
在没有看到任何代码的情况下,我不得不推测您的 $_SESSION['?'] 要么未设置:
unset($_SESSION['?']);
或正在被销毁:
session_destroy();
在你的应用程序的某个地方。检查您是否没有在应用程序中执行这些操作。