如果计数器大于 0,则返回 TRUE?
在 PHP 中,如果 $counter 大于 0,我尝试返回 TRUE。在这种情况下使用三元运算符会起作用吗?这是原始代码:
if($counter>0){return TRUE;}else{return FALSE;}
我可以将其压缩为
return $counter>0?TRUE:FALSE
谢谢
In PHP I am trying to return TRUE if $counter is greater than 0. Would using a ternary operator work in this case. Here is the original code:
if($counter>0){return TRUE;}else{return FALSE;}
could I condense that down to
return $counter>0?TRUE:FALSE
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以将其压缩为
return $counter>0
因为那本身就是一个布尔表达式。
You could condense it to
return $counter>0
Because that is a Boolean expression itself.
如果你喜欢,是的,你可以!
If you like, yes you can!
是的,您可以压缩它,但有时您也可以考虑:
此表达式检查它是否大于零,此外还检查
$counter
是否为整数。Yes you could condense that, but you can sometime consider also that:
This expression checks if it is greater than zero and in addition if
$counter
is integer.