在文档http://www.php.net/manual/en/language.operators.precedence.php中据说,++
运算--
符具有很高的优先级。但据我所知,++$x
和$x++
不一样。此外,$x++
应该有最小的优先级,因为它是在一切完成后计算的:
$x = 1;
var_dump(1 and $x--); // and operator is one of last operators in the table, it will be executed before post decrement
那么,后递增/递减运算符应该在这张表的底部吗?