PHP语法问题
我找到了这行代码,我试图理解它在做什么。我不熟悉的部分是问号和冒号。这些字符有什么用?
$string = $array[1] . ($array[0] === 47 ? '' : ' word');
I found this line of code and I'm trying to comprehend what it's doing. The part I'm not familiar with is the question mark and the colon. What are these characters used for?
$string = $array[1] . ($array[0] === 47 ? '' : ' word');
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个三元运算符;基本上是一个简写条件。
它等同于:
请参阅 PHP 手册中的本节( “三元运算符”部分)。
That's a ternary operator; basically a short-hand conditional.
It's the same as:
See this section in the PHP manual (the "Ternary Operator" section).
这就是三元运算符。
这是对教程的引用
它的工作原理如下:
That's the ternary operator.
Here's a reference to a tutorial
It works somehow like this: