3v4l.org

run code in 300+ PHP versions simultaneously
<?php class notStdClass { public $data = array(); } function foo() { static $id= 0; $object = new notStdClass; $object->id = $id++; return $object; } $foo1 = foo(); $foo2 = foo(); var_dump( spl_object_hash($foo1), spl_object_hash($foo2), spl_object_hash(foo()), spl_object_hash(foo()) );

preferences:
31.52 ms | 402 KiB | 5 Q