正确的 PHP 代码检查变量是否存在

发布于 2024-11-04 03:33:45 字数 436 浏览 2 评论 0原文

此代码是 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 技术交流群。

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

发布评论

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

评论(5

最初的梦 2024-11-11 03:33:45

使用 isset 作为通用检查(您也可以使用 isset) net/property_exists">property_exists 因为您正在处理一个对象):

if (isset($msgArray->sciID)) {
    echo "Has sciID";
}

Use isset as a general purpose check (you could also use property_exists since you're dealing with an object):

if (isset($msgArray->sciID)) {
    echo "Has sciID";
}
一生独一 2024-11-11 03:33:45

如果 isset()property_exists() 不起作用,我们可以使用 array_key_exists()

if (array_key_exists("key", $array)) {
    echo "Has key";
}

In case isset() or property_exists() doesn't work, we can use array_key_exists()

if (array_key_exists("key", $array)) {
    echo "Has key";
}
物价感观 2024-11-11 03:33:45

我一直使用 isset(),但最近我改为 !empty()empty,因为我的一位朋友建议这样做。

I've always done isset() but I've recently changed to !empty() and empty because one of my friends suggested it.

心房的律动 2024-11-11 03:33:45

isset() 函数检查变量是否已设置并且不为 null,鉴于其名称,这确实很愚蠢。如果您只想知道变量是否已设置,请使用以下函数:

function is_set( & $variable ) {
    if ( isset( $variable ) and ! is_null( $variable ) )
        return true;
    else
        return false;
}

当变量未设置时,此函数将准确返回 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:

function is_set( & $variable ) {
    if ( isset( $variable ) and ! is_null( $variable ) )
        return true;
    else
        return false;
}

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.

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