PHP 三元运算符的替代方案
在 JavaScript 中,您可以使用以下代码:
var = value || default;
除了三元运算符之外,PHP 中是否有等效的代码:
$var = ($value) ? $value : $default;
区别在于只需编写一次 $value
?
In JavaScript you can use the following code:
var = value || default;
Is there an equivalent in PHP except for the ternary operator:
$var = ($value) ? $value : $default;
The difference being only having to write $value
once?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
另一个繁琐的解决方法(与 5.3 之前的版本兼容)是:
但如果您确实有多个可能的值或默认值,那么这确实是可取的。 (并没有真正节省打字时间,不是紧凑的语法替代方案,只是避免两次提及
$value
。)Another fiddly workaround (compatible with pre-5.3) would be:
But that's really just advisable if you do have multiple possible values or defaults. (Doesn't really save on typing, not a compact syntax alternative, just avoids mentioning
$value
twice.)有 5.3 或没有 5.3 我都会写。
因为我讨厌只写结构。
with 5.3 or without 5.3 I would write.
because I hate write-only constructs.
从 php 5.3 开始
$var = $value ?: $default
Since of php 5.3
$var = $value ?: $default