3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Example{ public static $ONE = [1,'one']; public static $TWO = [2,'two']; public static $THREE = [3,'three']; public static function test(){ $reflection = new ReflectionClass(get_class()); return $reflection->getStaticProperties(); } } var_dump(Example::test());
Output for git.master, git.master_jit, rfc.property-hooks
array(3) { ["ONE"]=> array(2) { [0]=> int(1) [1]=> string(3) "one" } ["TWO"]=> array(2) { [0]=> int(2) [1]=> string(3) "two" } ["THREE"]=> array(2) { [0]=> int(3) [1]=> string(5) "three" } }

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:
20.43 ms | 402 KiB | 8 Q