语句的三元运算符
if( $a == $b) { return true;}
else { return false;}
如何编写以下三元运算符?
是这样吗
if($a == $b)? return true; : return false;
if( $a == $b) { return true;}
else { return false;}
how to write a ternary operater for the following ?
is this the way
if($a == $b)? return true; : return false;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您根本不需要三元运算符。只需返回此值,您就会获得正确的
true
或false
值。You don't need the ternary operator at all. Just return this and you'll get the correct
true
orfalse
value.你可以
但是如果你真的想使用运算符
You could just
But if you really want to use the operator