PHP错误无法使用方法返回>写入上下文中的值

发布于 2024-08-18 11:26:58 字数 468 浏览 4 评论 0原文

我在 PHP 类中收到此错误...

致命错误:无法使用方法返回 写入上下文中的值 C:\webserver\htdocs\friendproject2\includes\classes\User.class.php 第 35 行

这是有问题的部分。

if(isset($this->session->get('user_id')) && $this->session->get('user_id') != ''){
    //run code
}

这段代码在我的委托人中,如果尚未为 $this->session->get('user_id') 设置值,那么它将返回 false 而不是数字。正如你所看到的,我希望检查这个值是否是一个数字,或者甚至没有设置。

任何修复帮助表示赞赏。

I am getting this error in a PHP class...

Fatal error: Can't use method return
value in write context in
C:\webserver\htdocs\friendproject2\includes\classes\User.class.php
on line 35

Here is the troubled part.

if(isset($this->session->get('user_id')) && $this->session->get('user_id') != ''){
    //run code
}

This code is in my contrustor, is a value is not already set for $this->session->get('user_id') then it will return false instead of a Number. So as you can see I was hoping to check if this value is a number or not or not even set.

Any help with fixing appreciated.

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

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

发布评论

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

评论(3

吹泡泡o 2024-08-25 11:26:59

您不能在函数上使用 isset。但是,由于 false0'' 都等同于 false 语句,因此可以这样编写测试:

if( $id = $this->sessions->get('user_id') ){
   // Will only run if $id does not equal '', False, or 0
}

这样您就可以运行您的 测试了。一步测试分配变量。

You can't use isset on a function. However, since false, 0, and '' all equate to a falsey statement, write your test this way:

if( $id = $this->sessions->get('user_id') ){
   // Will only run if $id does not equal '', False, or 0
}

That way you have run your test and assigned the variable in one step.

感情洁癖 2024-08-25 11:26:58

您不能使用 isset 作为函数的结果。请考虑以下代码:

if( $this->session->get('user_id') ){
    //run code
}

You can't use isset for the result of a function. Consider the following code instead:

if( $this->session->get('user_id') ){
    //run code
}
念﹏祤嫣 2024-08-25 11:26:58

isset() 仅适用于变量
传递任何其他内容都会导致
解析错误。用于检查常数
使用 Defined() 函数进行设置。

来自 PHP 手册

isset() only works with variables as
passing anything else will result in a
parse error. For checking if constants
are set use the defined() function.

From the PHP Manual.

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