3v4l.org

run code in 300+ PHP versions simultaneously
<?php interface ArraySerializableInterface {} class Baz { private $BazEvent = 'BazEvent'; } class Bar{ private $event = 'BarEvent'; private $secendClass; /** * Constructor. */ public function __construct() { $this->secendClass = [ new Baz(), ]; } } class Foo { private $test = 'sd'; private $firstClass; /** * Constructor. */ public function __construct() { $this->firstClass = [ 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)) { throw new \RuntimeException('Multi-array is currently not supported.'); continue; } $array[$property->getName()][$name] = $subValue; } } } $foo = new Foo; var_dump( $foo->dismount());
Output for git.master, git.master_jit, rfc.property-hooks
array(2) { ["test"]=> string(2) "sd" ["firstClass"]=> array(4) { [0]=> array(2) { ["event"]=> string(8) "BarEvent" ["secendClass"]=> array(1) { [0]=> array(1) { ["BazEvent"]=> string(8) "BazEvent" } } } [1]=> array(2) { ["event"]=> string(8) "BarEvent" ["secendClass"]=> array(1) { [0]=> array(1) { ["BazEvent"]=> string(8) "BazEvent" } } } [2]=> array(2) { ["event"]=> string(8) "BarEvent" ["secendClass"]=> array(1) { [0]=> array(1) { ["BazEvent"]=> string(8) "BazEvent" } } } [3]=> array(2) { ["event"]=> string(8) "BarEvent" ["secendClass"]=> array(1) { [0]=> array(1) { ["BazEvent"]=> string(8) "BazEvent" } } } } }

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:
48.79 ms | 403 KiB | 8 Q