PHP错误无法使用方法返回>写入上下文中的值
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您不能在函数上使用
isset
。但是,由于false
、0
和''
都等同于 false 语句,因此可以这样编写测试:这样您就可以运行您的 测试了。一步测试并分配变量。
You can't use
isset
on a function. However, sincefalse
,0
, and''
all equate to a falsey statement, write your test this way:That way you have run your test and assigned the variable in one step.
您不能使用 isset 作为函数的结果。请考虑以下代码:
You can't use isset for the result of a function. Consider the following code instead:
来自 PHP 手册。
From the PHP Manual.