3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Test { public static function hello() { static $my; var_dump($my); if ($my) { $my = '2'; } else { $my = '1'; } var_dump($my); } } class Test2 extends Test { } Test::hello(); Test::hello(); Test2::hello();

preferences:
32.94 ms | 402 KiB | 5 Q