Where can I read about conditionals done with quot;?quot; and quot;:quot; (colon)?(我在哪里可以阅读有关使用“?完成的条件的信息?和“:(冒号)?)
问题描述
可能的重复:
参考 - 这个符号在 PHP 中是什么意思?>
我已经用 if/else 或一年左右的时间做条件语句了.查看一些新代码,我看到一个条件似乎使用 ?
和 :
而不是 if 和 else.我想了解更多关于这方面的信息,但我不知道该用什么 google 来查找解释其工作原理的文章.我该怎么做?
I've been doing conditionals with if/else or a year or so now. Looking at some new code, I'm seeing a conditional that appears to use ?
and :
instead of if and else. I'd like to learn more about this, but I am not sure what to google to find articles explaining how it works. How can I do it?
推荐答案
三元运算符.
基本用法类似于
$foo = (if this expressions returns true) ? (assign this value to $foo) : (otherwise, assign this value to $foo)
它不仅可以用于赋值,看起来下面还会出现其他示例.
It can be used for more than assignment though, it looks like other examples are cropping up below.
我认为您在许多现代面向对象风格的 PHP 中看到这一点的原因是,如果没有静态类型,您最终需要对任何特定变量中的类型感到偏执,而且一行三元比 7 更简洁行 if/else 条件.
I think the reason you see this in a lot of modern, OO style PHP is that without static typing you end up needing to be paranoid about the types in any particular variable, and a one line ternary is less cluttered than a 7 line if/else conditional.
另外,尊重命名的评论和真相,阅读所有关于the 计算机科学中的三元运算符s.
Also, in deference to the comments and truth in naming, read all about the ternary operators in computer science.
这篇关于我在哪里可以阅读有关使用“?"完成的条件的信息?和“:"(冒号)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:我在哪里可以阅读有关使用“?"完成的条件的信息?和“:"(冒号)?


- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- PHP - if 语句中的倒序 2021-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01