这个PHP逻辑控制结构如何重构呢?

发布于 2024-12-19 12:59:30 字数 276 浏览 1 评论 0原文

我的直觉告诉我,下面的代码有一个更好的、也许是单行的重构:

if (isset($x))
{
    if (isset($y))
    {
        $z = array_merge($x,$y);
    }
    else
    {
        $z = $x;
    }
}
else
{
    $z = $y;
}

如果我不担心警告错误,一个简单的 array_merge($x,$y) 就可以工作,但我想知道更好的方法来做到这一点。想法?

My gut tells me that there is a better, perhaps one-line refactor for the following code:

if (isset($x))
{
    if (isset($y))
    {
        $z = array_merge($x,$y);
    }
    else
    {
        $z = $x;
    }
}
else
{
    $z = $y;
}

If I wasn't worried about warning errors, a simple array_merge($x,$y) would work, but I'd like to know a better way to do this. Thoughts?

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

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

发布评论

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

评论(1

吃不饱 2024-12-26 12:59:30
$z = array_merge(
    isset($x) ? $x : array(),
    isset($y) ? $y : array()
);

如果 $x$y 未设置,这将返回一个空数组。如果只设置了一个,它将返回该数组。如果两者都设置了,它将返回在数组上运行 array_merge() 的结果。

这并不完全是您上面代码的行为,但我相信这是您想要的行为。 (我相信,在您的代码中,如果 $x$y 均未设置,则 $z 将不是数组。

)顺便说一句,此代码假设如果设置了 $x$y,则它们是数组。如果情况并非如此,您应该对它们运行 is_array() 以确认它们是数组,或者使用 类型杂耍,以确保在 array_merge() 运行时它们是数组。

$z = array_merge(
    isset($x) ? $x : array(),
    isset($y) ? $y : array()
);

This will return an empty array if $x and $y are not set. If only one is set, it will return that array. If both are set, it will return the result of array_merge() run on the arrays.

That is not quite the behavior of your code above, but I believe it is the behavior you intended. (I believe, in your code, that $z will not be an array if both $x and $y are not set.)

By the way, this code assumes that if $x and $y are set, that they are arrays. If that is not the case, you should either run is_array() on them to confirm they are arrays or use type juggling to make sure they are arrays when array_merge() runs.

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