我如何理解嵌套的 ?: PHP 中的运算符? [复制]
Posted
技术标签:
【中文标题】我如何理解嵌套的 ?: PHP 中的运算符? [复制]【英文标题】:How can I understand nested ?: operators in PHP? [duplicate] 【发布时间】:2012-07-01 04:26:30 【问题描述】:可能重复:Problem with php ternary operator
我在this article 中阅读了一些关于 PHP 的内容,我停下来考虑了他的一个抱怨。我无法弄清楚 PHP 究竟是如何得出它的结果的。
与(字面意思!)具有相似运算符的所有其他语言不同,?: 是 left 关联的。所以这个:
$arg = 'T'; $vehicle = ( ( $arg == 'B' ) ? 'bus' : ( $arg == 'A' ) ? 'airplane' : ( $arg == 'T' ) ? 'train' : ( $arg == 'C' ) ? 'car' : ( $arg == 'H' ) ? 'horse' : 'feet' ); echo $vehicle;
打印马。
PHP 遵循什么逻辑路径导致'horse'
被分配给$vehicle
?
【问题讨论】:
php.net/manual/en/language.operators.comparison.php 三元运算符示例#3 三元运算符很棒,但在 PHP 中,我强烈建议您对它们应用大量的括号,以明确您想要的行为。 【参考方案1】:括号是理解和修复的解决方案:
这应该有 unintended 结果 (horse
):
$arg = 'T';
$vehicle = (
(
(
(
(
( $arg == 'B' ) ? 'bus' : ( $arg == 'A' )
) ? 'airplane' : ( $arg == 'T' )
) ? 'train' : ( $arg == 'C' )
) ? 'car' : ( $arg == 'H' )
) ? 'horse' : 'feet'
);
echo $vehicle;
这应该有预期的结果 (train
):
$arg = 'T';
$vehicle = (
( $arg == 'B' ) ? 'bus' : (
( $arg == 'A' ) ? 'airplane' : (
( $arg == 'T' ) ? 'train' : (
( $arg == 'C' ) ? 'car' : (
( $arg == 'H' ) ? 'horse' : 'feet'
)
)
)
)
);
echo $vehicle;
【讨论】:
【参考方案2】:注意:
建议您避免“堆叠”三元表达式。在单个语句中使用多个三元运算符时 PHP 的行为并不明显:
<?php // on first glance, the following appears to output 'true' echo (true?'true':false?'t':'f'); // however, the actual output of the above is 't' // this is because ternary expressions are evaluated from left to right // the following is a more obvious version of the same code as above echo ((true ? 'true' : false) ? 't' : 'f'); // here, you can see that the first expression is evaluated to 'true', which // in turn evaluates to (bool)true, thus returning the true branch of the // second ternary expression. ?>
http://php.net/manual/en/language.operators.comparison.php#language.operators.comparison.ternary
【讨论】:
以上是关于我如何理解嵌套的 ?: PHP 中的运算符? [复制]的主要内容,如果未能解决你的问题,请参考以下文章
QComboBox实现复选功能(三种方法:嵌套QListWidget, 设置QStandardItemModel, 设置Delegate)