JezK
Edit File: weakref_014.phpt
--TEST-- Weakref: stable spl_object_hash --FILE-- <?php $o = new StdClass(); $oldHash = spl_object_hash($o); $wr = new WeakRef($o); $newHash = spl_object_hash($o); var_dump($oldHash == $newHash); ?> ==END== --EXPECT-- bool(true) ==END==