3v4l.org

run code in 300+ PHP versions simultaneously
<?php class notStdClass { public $currency = mt_rand(1, 100); 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()) );
Output for 5.3.0 - 5.3.27, 5.4.0 - 5.4.19
Parse error: syntax error, unexpected '(', expecting ',' or ';' in /in/LZcgR on line 4
Process exited with code 255.

preferences:
186.74 ms | 1395 KiB | 55 Q