3v4l.org

run code in 300+ PHP versions simultaneously
<?php class x { function test() { static $x = 0; return ++$x; } } $x = new x(); var_dump($x->test()); $y = new x(); var_dump($y->test());

preferences:
40.19 ms | 402 KiB | 5 Q