为什么我不能使用 $session_start()?
我收到这个错误。
Notice: Undefined variable: session_start in C:\wamp\www\check.php on line 3
第 3 行显示未定义变量,但这里是第 3 行。
$session_start();
为什么会发生这种情况? session_start不是预定义的吗?
I got this error.
Notice: Undefined variable: session_start in C:\wamp\www\check.php on line 3
It says undefined variable on line 3, but here's line 3.
$session_start();
Why is this happening? Isn't session_start predefined?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
session_start()
是一个函数。如果您定义了
$session_start
将是一个变量。您正在阅读的错误消息只是告诉您您尝试作为函数调用的变量并不存在。session_start()
is a function.$session_start
would be a variable if you defined it. The error message you're reading is simply telling you that the variable that you're trying to call as a function doesn't exist as such.session_start()
它不是一个变量。
session_start()
It's not a variable.
session_start()
不是一个变量,而是一个函数。您不需要美元符号。将其更改为并且它应该可以工作。
session_start()
is not a variable, but a function. You do not need the dollar sign. Change it toand it should work.
它只是没有 $ 的
session_start()
。请参阅手册。It's just
session_start()
with no $. See the manual.