3v4l.org

run code in 300+ PHP versions simultaneously
<?php class A { public function test() { static $v = []; $v[] = 'x'; } } $r = new \ReflectionMethod(A::class, 'test'); print_r($r->getStaticVariables()); $a = new A(); $a->test(); print_r($r->getStaticVariables()); $a->test(); print_r($r->getStaticVariables()); $r->getStaticVariables()['v'][0] = ['replace_first_x']; print_r($r->getStaticVariables()); $a->test(); print_r($r->getStaticVariables());
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [v] => Array ( ) ) Array ( [v] => Array ( [0] => x ) ) Array ( [v] => Array ( [0] => x [1] => x ) ) Array ( [v] => Array ( [0] => x [1] => x ) ) Array ( [v] => Array ( [0] => x [1] => x [2] => x ) )

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
32.76 ms | 406 KiB | 5 Q