3v4l.org

run code in 300+ PHP versions simultaneously
<?php function test1($unset = false) { static $bar = 1; $bar++; echo $bar; unset($bar); /* $bar = " | "; echo $bar; static $bar = 5; $bar++; echo $bar; //*/ } function test2($unset = false) { static $bar = 1; $bar++; echo $bar; unset($bar); $bar = " | "; echo $bar; static $bar = 5; $bar++; echo $bar; } test1(); test1(); test1(); test1(); echo "\n"; test2(); test2(); test2(); test2();

preferences:
38.72 ms | 402 KiB | 5 Q