Home >Backend Development >PHP Tutorial >PHP操作符优先级问题

PHP操作符优先级问题

WBOY
WBOYOriginal
2016-06-06 20:51:311145browse

一段代码

$a=0;
var_dump(1 != $a = 1);

按照优先级比,!=比=高,为何输出结果是false,求解答

回复内容:

一段代码

$a=0;
var_dump(1 != $a = 1);

按照优先级比,!=比=高,为何输出结果是false,求解答

这个可以看鸟哥 @laruence 的文章。

这里如果严格按照操作符优先级顺序,!=操作以后得到一个不能被赋值的左值,最终会造成语法错误;PHP里有对表达式内赋值的兼容,所以这时是先执行的赋值操作。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn