正确的 PHP 代码检查变量是否存在
此代码是 websocket 服务器的一部分:
$msgArray = json_decode($msg);
if ($msgArray->sciID) {
echo "Has sciID";
}
它将接收像 {"sciID":67812343}
这样的 json 字符串,或者接收没有 sciID 的完全不同的 json 字符串,例如 {"something" :“其他”}
。
当服务器收到后者时,它会回显:Notice: Undefined property: stdClass::$sciID in /path/to/file.php on line 10
检查是否的正确代码是什么>$msgArray->sciID
存在吗?
This code is part of a websocket server:
$msgArray = json_decode($msg);
if ($msgArray->sciID) {
echo "Has sciID";
}
It will either be receiving a json string like {"sciID":67812343}
or a completely different json string with no sciID such as {"something":"else"}
.
When the server receives the later, it echos out: Notice: Undefined property: stdClass::$sciID in /path/to/file.php on line 10
What is the correct code to check if $msgArray->sciID
exists?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
使用
isset
作为通用检查(您也可以使用isset
) net/property_exists">property_exists
因为您正在处理一个对象):Use
isset
as a general purpose check (you could also useproperty_exists
since you're dealing with an object):property_exists()
?property_exists()
?如果
isset()
或property_exists()
不起作用,我们可以使用array_key_exists()
In case
isset()
orproperty_exists()
doesn't work, we can usearray_key_exists()
我一直使用
isset()
,但最近我改为!empty()
和empty
,因为我的一位朋友建议这样做。I've always done
isset()
but I've recently changed to!empty()
andempty
because one of my friends suggested it.isset()
函数检查变量是否已设置并且不为 null,鉴于其名称,这确实很愚蠢。如果您只想知道变量是否已设置,请使用以下函数:当变量未设置时,此函数将准确返回 true,否则返回 false。 '&'参数旁边的内容很重要,因为它告诉 PHP 将引用传递给变量,而不是变量的值,从而避免“注意: 未定义的变量”,当变量未设置时。
The
isset()
function checks if a variable is set and is not null, which is really stupid, given its name. If you only want to know if a variable is set, use the following function:This function will return true exactly when the variable is not set, and false otherwise. The '&' next to the argument is important, because it tells PHP to pass a reference to the variable, and not the value of the variable, thus avoiding a "Notice: Undefined variable" when the variable is not set.