Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是一个很短的问题。每当我再次实例化同一个对象时都会调用 __destruct 吗?(在 PHP 中)
非常简短而明显的答案:不。 仅当对象实例被破坏时。
当然:
$foo = new Bar; $foo = new Bar;
这里分配给的实例$foo 正在被销毁,因为$foo正在被覆盖;不管它被什么覆盖。
$foo