3v4l.org

run code in 300+ PHP versions simultaneously
<?php interface ArraySerializableInterface {} class Baz { private $eventq = 'test222'; } 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; var_dump( $foo->dismount());
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.25, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.4, 8.3.6
array(2) { ["test"]=> string(2) "sd" ["test2"]=> array(4) { [0]=> array(2) { ["event"]=> string(4) "test" ["test3"]=> array(4) { [0]=> array(1) { ["eventq"]=> string(7) "test222" } [1]=> array(1) { ["eventq"]=> string(7) "test222" } [2]=> array(1) { ["eventq"]=> string(7) "test222" } [3]=> array(1) { ["eventq"]=> string(7) "test222" } } } [1]=> array(2) { ["event"]=> string(4) "test" ["test3"]=> array(4) { [0]=> array(1) { ["eventq"]=> string(7) "test222" } [1]=> array(1) { ["eventq"]=> string(7) "test222" } [2]=> array(1) { ["eventq"]=> string(7) "test222" } [3]=> array(1) { ["eventq"]=> string(7) "test222" } } } [2]=> array(2) { ["event"]=> string(4) "test" ["test3"]=> array(4) { [0]=> array(1) { ["eventq"]=> string(7) "test222" } [1]=> array(1) { ["eventq"]=> string(7) "test222" } [2]=> array(1) { ["eventq"]=> string(7) "test222" } [3]=> array(1) { ["eventq"]=> string(7) "test222" } } } [3]=> array(2) { ["event"]=> string(4) "test" ["test3"]=> array(4) { [0]=> array(1) { ["eventq"]=> string(7) "test222" } [1]=> array(1) { ["eventq"]=> string(7) "test222" } [2]=> array(1) { ["eventq"]=> string(7) "test222" } [3]=> array(1) { ["eventq"]=> string(7) "test222" } } } } }
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 array(2) { ["test"]=> string(2) "sd" ["test2"]=> array(4) { [0]=> array(2) { ["event"]=> string(4) "test" ["test3"]=> array(4) { [0]=> array(1) { ["eventq"]=> string(7) "test222" } [1]=> array(1) { ["eventq"]=> string(7) "test222" } [2]=> array(1) { ["eventq"]=> string(7) "test222" } [3]=> array(1) { ["eventq"]=> string(7) "test222" } } } [1]=> array(2) { ["event"]=> string(4) "test" ["test3"]=> array(4) { [0]=> array(1) { ["eventq"]=> string(7) "test222" } [1]=> array(1) { ["eventq"]=> string(7) "test222" } [2]=> array(1) { ["eventq"]=> string(7) "test222" } [3]=> array(1) { ["eventq"]=> string(7) "test222" } } } [2]=> array(2) { ["event"]=> string(4) "test" ["test3"]=> array(4) { [0]=> array(1) { ["eventq"]=> string(7) "test222" } [1]=> array(1) { ["eventq"]=> string(7) "test222" } [2]=> array(1) { ["eventq"]=> string(7) "test222" } [3]=> array(1) { ["eventq"]=> string(7) "test222" } } } [3]=> array(2) { ["event"]=> string(4) "test" ["test3"]=> array(4) { [0]=> array(1) { ["eventq"]=> string(7) "test222" } [1]=> array(1) { ["eventq"]=> string(7) "test222" } [2]=> array(1) { ["eventq"]=> string(7) "test222" } [3]=> array(1) { ["eventq"]=> string(7) "test222" } } } } }

preferences:
158.54 ms | 409 KiB | 188 Q