3v4l.org

run code in 300+ PHP versions simultaneously
<?php interface ArraySerializableInterface {} class Bar { private $event = 'test'; public function dismount() { $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)) { foreach ($value as $name => $foo) { if ($foo instanceof ArraySerializableInterface) { $array[$property->getName()][] = $foo->dismount(); } } continue; } $array[$property->getName()] = $property->getValue($object); $property->setAccessible(false); } return $array; } } class Foo { private $test = 'sd'; private $test2; /** * Constructor. */ public function __construct() { $this->test2 = [ new Bar(), new Bar(), new Bar(), new Bar(), ]; } public function getTest() { return $this->test; } public function getTest2() { return $this->test2; } public function dismount() { $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)) { foreach ($value as $name => $foo) { if ($foo instanceof ArraySerializableInterface) { $array[$property->getName()][] = $foo->dismount(); } } continue; } $array[$property->getName()] = $value; $property->setAccessible(false); } return $array; } } $foo = new Foo; print_r( $foo->dismount());

preferences:
42.96 ms | 402 KiB | 5 Q