3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Foo { private $test = 'sd'; private $test2 = [ new \stdClass(), new \stdClass(), new \stdClass(), new \stdClass(), ]; public function dismount() { $object = $this; $reflectionClass = new ReflectionClass(get_class($object)); $array = array(); foreach ($reflectionClass->getProperties() as $property) { $property->setAccessible(true); $array[$property->getName()] = $property->getValue($object); $property->setAccessible(false); } return $array; } } $foo = new Foo; print_r( $foo->dismount());
Output for 7.0.18 - 7.0.20, 7.1.4 - 7.1.6
Fatal error: Constant expression contains invalid operations in /in/aK1Hi on line 6
Process exited with code 255.
Output for 7.0.0 - 7.0.17, 7.1.0 - 7.1.3
Fatal error: Constant expression contains invalid operations in /in/aK1Hi on line 11
Process exited with code 255.

preferences:
167.97 ms | 1395 KiB | 35 Q