php – 如何评估“$foo = 5 \u0026\u0026 $bar = 15”,为什么不是错误?
作者:互联网
假设我们得到了一个简单的代码:
// $foo and $bar aren't defined before
$foo = 5 && $bar = 15;
// var_dump()
// $foo is (bool) TRUE
// $bar is (int) 15
所以我认为它的工作方式如下:
$foo = (5 && ($bar = 15))
但在我看来应该是:
$foo = ((5 && $bar) = 15) // should throw syntax error due FALSE = 15
>评估表从左到右[$foo想要5但是&&更高]
>&&得到了最高优先级[所以&&需要5和$bar]
> 5 ==正确; $bar ==未定义[所以它是NULL == FALSE]
> =获得正确的关联性[等待评估(5&& $bar)]
请以最简单的方式(在其他一些例子中)向像我这样的穷人解释.问候.
解决方法:
我认为在这里阅读手册页可以帮助和清除很多东西.
那么如何评估这个呢?
$foo = 5 && $bar = 15;
首先,你必须知道&&优先级高于=.所以首先想到的是:
$foo = (5 && $bar) = 15;
但现在是你必须阅读手册直到结束的点:http://php.net/manual/en/language.operators.precedence.php
从那里引用:
Note:
Although = has a lower precedence than most other operators, PHP will still allow expressions similar to the following: if (!$a = foo()), in which case the return value of foo() is put into $a.
那是什么意思?
它默默地将15分配给$bar,例如
$foo = (5 && ($bar = 15));
现在你可以评估&&,$bar获得分配15和5&& 15为TRUE并且分配给$foo
标签:php,order-of-evaluation,operator-precedence,associativity 来源: https://codeday.me/bug/20190628/1318427.html