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.
我收到错误“无法发送会话缓存限制器”,但有趣的是我在调用 session_start() 之前检查了会话的状态。
if (session_status() == PHP_SESSION_NONE) { session_start(); }
是否存在绕过 session_status 的任何情况?
在使用会话之前不要打印任何输出或编写 HTML。