3v4l.org

run code in 300+ PHP versions simultaneously
<?php interface ArraySerializableInterface {} class Baz { private $event = 'test'; } class Bar{ private $event = 'test'; private $test3; /** * Constructor. */ public function __construct() { $this->test3 = [ new Baz(), new Baz(), new Baz(), new Baz(), ]; } } class Foo { private $test = 'sd'; private $test2; /** * Constructor. */ public function __construct() { $this->test2 = [ new Bar(), new Bar(), new Bar(), new Bar(), ]; } public function dismount($object = null) { $object = $object?: $this; $reflectionClass = new \ReflectionClass(get_class($object)); $array =[]; foreach ($reflectionClass->getProperties() as $property) { $property->setAccessible(true); $value = $property->getValue($object); if (is_array($value)) { $this->foo($value, $property, $array); continue; } $array[$property->getName()] = $value; $property->setAccessible(false); } return $array; } private function foo($value, \ReflectionProperty $property, &$array) { foreach ($value as $name => $subValue) { if (is_object($subValue)) { $array[$property->getName()][$name] = $this->dismount($subValue); continue; } if (is_array($subValue)) { //$this->foo($subValue, $property, $array); continue; } } } } $foo = new Foo; print_r( $foo->dismount());
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [test] => sd [test2] => Array ( [0] => Array ( [event] => test [test3] => Array ( [0] => Array ( [event] => test ) [1] => Array ( [event] => test ) [2] => Array ( [event] => test ) [3] => Array ( [event] => test ) ) ) [1] => Array ( [event] => test [test3] => Array ( [0] => Array ( [event] => test ) [1] => Array ( [event] => test ) [2] => Array ( [event] => test ) [3] => Array ( [event] => test ) ) ) [2] => Array ( [event] => test [test3] => Array ( [0] => Array ( [event] => test ) [1] => Array ( [event] => test ) [2] => Array ( [event] => test ) [3] => Array ( [event] => test ) ) ) [3] => Array ( [event] => test [test3] => Array ( [0] => Array ( [event] => test ) [1] => Array ( [event] => test ) [2] => Array ( [event] => test ) [3] => Array ( [event] => test ) ) ) ) )

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:
53.47 ms | 409 KiB | 8 Q