如何使用会话作为条件编写 if else PHP 语句而不收到错误消息?

发布于 2024-11-29 14:04:28 字数 293 浏览 1 评论 0 原文

我使用以下 php if 语句作为我的代码的一部分

if ($_SESSION['username'])

,并且当设置用户名会话时一切都很好,但是当设置用户名会话时,我会收到以下错误消息,我不想显示该消息。

Notice: Undefined index: username in C:\xampp\htdocs\mysites\ebay_tutorial\index.php on line 12

如何改进我的代码以使错误消息不显示?

I'm using the following php if statement as part of my code

if ($_SESSION['username'])

and everything is fine when the username session is set, but when it isn't, I get the following error message which I would like to not have show up.

Notice: Undefined index: username in C:\xampp\htdocs\mysites\ebay_tutorial\index.php on line 12

How can I improve my code so that the error message doesn't show up?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

审判长 2024-12-06 14:04:28

发生这种情况是因为您的 PHP 错误报告级别 设置为显示注意错误,如果您尝试访问数组中不存在的键,则会显示该错误。

您可以通过添加对 isset 的调用来阻止显示错误:

if (isset($_SESSION['username']))

This is happening because your PHP error reporting level is set to show Notice errors, which display if you try to access a key in an array which does not exist.

You can stop the error from being displayed by adding a call to isset:

if (isset($_SESSION['username']))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文