过多使用会话是否会降低 PHP 的性能?
这是一个有点奇怪的问题,但我在项目中经常使用会话。
如果我在一个页面中重复使用它们,最好将它们读入变量一次,然后使用该变量,或者不断引用 $_SESSION['name']
在同一页面?
Bit of an odd question, but I'm using sessions a lot in a project.
If I'm using them repeatedly in one page is it better to read them in to a variable once and then use the variable or does it make no difference to be constantly referencing $_SESSION['name']
in the same page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有。
这确实没有什么区别。
$_SESSION['name'] 已经是一个变量了,你知道。
Nope.
it does make no difference.
$_SESSION['name'] is already a variable, you know.
不,这并不重要,因为 $_SESSION['name'] 与其他变量相同,只是在全局空间中定义为 $_SERVER、$_COOKIE
No it does not mater as $_SESSION['name'] is the same variable as others, just defined in global space as $_SERVER, $_COOKIE