PHP - $variable = value1 或 value2
$val1 = false;
$val2 = 10;
$variable = $val1 || $val2;
上面的代码使$variable = true
。
如果 $val1
为 false,PHP 中是否有任何运算符可以使 $variable
取 $val2
的值? 我认为 ||
会这样做,但它只在任何一个值为 true 时返回 true,如果两个值都为 false 则返回 false...
$val1 = false;
$val2 = 10;
$variable = $val1 || $val2;
the code above makes $variable = true
.
Is there any operator in PHP that would make $variable
take the value of $val2
, if $val1
is false?
I thought ||
would do this, but it only returns true if any of the values are true, or false if both are false...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
三元运算符
or (在 PHP 5.3+ 中)
The ternary operator
or (in PHP 5.3+ )
运算符
||
执行逻辑或,这就是为什么您只能得到 true 或 false 返回。您可能想使用 PHP 三元 运算符:
The operator
||
does a logical or, that's why you only get true or false back.You might want to use PHP ternary operator:
您还可以放弃运算符优先级:
or
比=
弱。如果添加额外的空格,它会变得更具可读性。但这或多或少是 PHP<5.3 中缺少 ?: 的解决方法。You can also absue operator precedence:
or
is weaker than=
. It gets more readable if you add extra spaces. But it's more or less a workaround for the lack of ?: in PHP<5.3.