语句的三元运算符

发布于 2024-09-11 02:04:57 字数 180 浏览 2 评论 0原文

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 技术交流群。

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

发布评论

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

评论(2

深爱不及久伴 2024-09-18 02:04:57

您根本不需要三元运算符。只需返回此值,您就会获得正确的 truefalse 值。

return $a == $b;

You don't need the ternary operator at all. Just return this and you'll get the correct true or false value.

return $a == $b;
笔落惊风雨 2024-09-18 02:04:57

你可以

return ($a == $b)

但是如果你真的想使用运算符

return ( ($a == $b) ? true : false)

You could just

return ($a == $b)

But if you really want to use the operator

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