<?php class Foo { public $x; } $x = new Foo(); $x->x = $x; // comment this line out $y = new WeakRef($x); unset($x); var_dump($y->get()); gc_collect_cycles(); var_dump($y->get());
You have javascript disabled. You will not be able to edit any code.