PHP语法问题

发布于 2024-08-09 10:47:36 字数 133 浏览 8 评论 0原文

我找到了这行代码,我试图理解它在做什么。我不熟悉的部分是问号和冒号。这些字符有什么用?

$string = $array[1] . ($array[0] === 47 ? '' : ' word');

I found this line of code and I'm trying to comprehend what it's doing. The part I'm not familiar with is the question mark and the colon. What are these characters used for?

$string = $array[1] . ($array[0] === 47 ? '' : ' word');

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

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

发布评论

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

评论(2

红焚 2024-08-16 10:47:36

这是一个三元运算符;基本上是一个简写条件。

它等同于:

$string = $array[1];

if ($array[0] !== 47)
    $string .= ' word';

请参阅 PHP 手册中的本节( “三元运算符”部分)。

That's a ternary operator; basically a short-hand conditional.

It's the same as:

$string = $array[1];

if ($array[0] !== 47)
    $string .= ' word';

See this section in the PHP manual (the "Ternary Operator" section).

暖心男生 2024-08-16 10:47:36

这就是三元运算符。

这是对教程的引用

它的工作原理如下:

function tern()

    if ($array[0] === 47)
    {
        return '';
    }
    else
    {
        return 'word';
    }
}

That's the ternary operator.

Here's a reference to a tutorial

It works somehow like this:

function tern()

    if ($array[0] === 47)
    {
        return '';
    }
    else
    {
        return 'word';
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文