c = $c; $this->d = $d; } function __destruct() { print "In C::__destruct()\n"; } } $c = new C(new C(), new C()); $c = null; print "Test end\n";