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例子,我有点困惑,我应该session_start()在访问或设置之前每次都使用还是应该每页$_SESSION['variable']只使用一次还是只在用户成功登录后使用?session_start()
$_SESSION
session_start()
$_SESSION['variable']
在您计划使用任何 $_SESSION 变量之前,每页使用一次,在最顶部
如果你想访问所有会话,你应该总是session_start()在你的 PHP 页面上使用一次First Line$_SESSION
First Line