3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Struct { function __construct() { foreach (func_get_args() as $name) { $this->$name = null; } } function __invoke(... $values) { $obj = clone $this; foreach ($obj as $index => $name) { $obj->$name = array_shift($values); } return $obj; } } $Coord = new Struct('x', 'y', 'z'); $Coord->z = 0; $c1 = $Coord(12, 45, -34); print_r($c1); $c2 = $Coord(100, -100); print_r($c2); $Person = new Struct('firstname', 'lastname'); $p1 = $Person('William', 'Wallace'); print_r($p1); $p2 = $Person('Peter', 'Griffin'); print_r($p2);
Output for git.master, git.master_jit, rfc.property-hooks
Deprecated: Creation of dynamic property Struct::$x is deprecated in /in/jTZA7 on line 7 Deprecated: Creation of dynamic property Struct::$y is deprecated in /in/jTZA7 on line 7 Deprecated: Creation of dynamic property Struct::$z is deprecated in /in/jTZA7 on line 7 Deprecated: Creation of dynamic property Struct::$ is deprecated in /in/jTZA7 on line 14 Deprecated: Creation of dynamic property Struct::$0 is deprecated in /in/jTZA7 on line 14 Deprecated: Creation of dynamic property Struct::$45 is deprecated in /in/jTZA7 on line 14 Deprecated: Creation of dynamic property Struct::$-34 is deprecated in /in/jTZA7 on line 14 Struct Object ( [x] => [y] => [z] => 0 [] => [0] => -34 [45] => [-34] => ) Deprecated: Creation of dynamic property Struct::$ is deprecated in /in/jTZA7 on line 14 Deprecated: Creation of dynamic property Struct::$0 is deprecated in /in/jTZA7 on line 14 Deprecated: Creation of dynamic property Struct::$-100 is deprecated in /in/jTZA7 on line 14 Struct Object ( [x] => [y] => [z] => 0 [] => [0] => [-100] => ) Deprecated: Creation of dynamic property Struct::$firstname is deprecated in /in/jTZA7 on line 7 Deprecated: Creation of dynamic property Struct::$lastname is deprecated in /in/jTZA7 on line 7 Deprecated: Creation of dynamic property Struct::$ is deprecated in /in/jTZA7 on line 14 Deprecated: Creation of dynamic property Struct::$Wallace is deprecated in /in/jTZA7 on line 14 Struct Object ( [firstname] => [lastname] => [] => [Wallace] => ) Deprecated: Creation of dynamic property Struct::$ is deprecated in /in/jTZA7 on line 14 Deprecated: Creation of dynamic property Struct::$Griffin is deprecated in /in/jTZA7 on line 14 Struct Object ( [firstname] => [lastname] => [] => [Griffin] => )

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:
38.25 ms | 405 KiB | 8 Q