为什么CLONE和NEW是相同优先级的运算符,它们是非关联的,彼此相邻?

时间:2013-10-10 13:56:01

标签: php operators

在PHP文档中,它说:Operators of equal precedence that are non-associative cannot be used next to each other, for example 1 < 2 > 1 is illegal in PHP.

然而,即使clonenew具有相同的优先权并且是非关联的,这似乎也有效:

var_dump(clone new stdClass()); // output: object(stdClass)#2 (0) {}

为什么这可能?

0 个答案:

没有答案