在 PHP 文档中,它说:非关联的同等优先级运算符不能彼此相邻使用,例如1 < 2 > 1
在 PHP 中是非法的。
但是,即使它具有相同的优先级并且是非关联的,这似乎也clone
有效new
:
var_dump(clone new stdClass()); // output: object(stdClass)#2 (0) {}
为什么这可能?
在 PHP 文档中,它说:非关联的同等优先级运算符不能彼此相邻使用,例如1 < 2 > 1
在 PHP 中是非法的。
但是,即使它具有相同的优先级并且是非关联的,这似乎也clone
有效new
:
var_dump(clone new stdClass()); // output: object(stdClass)#2 (0) {}
为什么这可能?