PHP语法问题:问号和冒号是什么意思?

发布于 2024-08-01 15:23:37 字数 116 浏览 6 评论 0原文

return $add_review ? FALSE : $arg;

问号和冒号是什么意思?

return $add_review ? FALSE : $arg;

What do question mark and colon mean?

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

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

发布评论

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

评论(2

紫南 2024-08-08 15:23:37

这是 PHP 三元运算符(也称为条件运算符) - 如果第一个操作数计算为 true,则计算为第二个操作数,否则计算为第三个操作数。

将其视为可在表达式中使用的“if”语句。 在进行取决于某些条件的简洁赋值时非常有用,例如,

$param = isset($_GET['param']) ? $_GET['param'] : 'default';

还有一个简写版本(在 PHP 5.3 中)。 您可以省略中间操作数。 如果为真,则运算符将计算为第一个操作数,否则计算为第三个操作数。 例如:

$result = $x ?: 'default';

值得一提的是,上面的代码在使用即 $_GET 或 $_POST 变量时会抛出未定义的索引通知,并防止我们需要使用更长的版本,用 isset, !emptyPHP7 中引入的空合并运算符

$param = $_GET['param'] ?? 'default';

This is the PHP ternary operator (also known as a conditional operator) - if first operand evaluates true, evaluate as second operand, else evaluate as third operand.

Think of it as an "if" statement you can use in expressions. Can be very useful in making concise assignments that depend on some condition, e.g.

$param = isset($_GET['param']) ? $_GET['param'] : 'default';

There's also a shorthand version of this (in PHP 5.3 onwards). You can leave out the middle operand. The operator will evaluate as the first operand if it true, and the third operand otherwise. For example:

$result = $x ?: 'default';

It is worth mentioning that the above code when using i.e. $_GET or $_POST variable will throw undefined index notice and to prevent that we need to use a longer version, with isset, !empty or a null coalescing operator which is introduced in PHP7:

$param = $_GET['param'] ?? 'default';
天涯沦落人 2024-08-08 15:23:37

它是 if-else 运算符的三元形式。 上面的语句基本上是这样的:有关

if ($add_review) then {
    return FALSE; //$add_review evaluated as True
} else {
    return $arg //$add_review evaluated as False
}

PHP 中三元运算的更多详细信息,请参见此处:http:// /www.addedbytes.com/php/ternary-conditionals/

It's the ternary form of the if-else operator. The above statement basically reads like this:

if ($add_review) then {
    return FALSE; //$add_review evaluated as True
} else {
    return $arg //$add_review evaluated as False
}

See here for more details on ternary op in PHP: http://www.addedbytes.com/php/ternary-conditionals/

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