3v4l.org

run code in 300+ PHP versions simultaneously
<?php class PHPFI { public $a = 'A PROPERTY'; protected $b = 'B PROPERTY'; private $c = 'C PROPERTY'; } $phpfi = new PHPFI(); var_dump((array) $phpfi); // array(3) { // ["a"]=> // string(10) "A PROPERTY" // ["*b"]=> // string(10) "B PROPERTY" // ["PHPFIc"]=> // string(10) "C PROPERTY" // } $reflect = new ReflectionClass($phpfi); $reflectProps = $reflect->getProperties(ReflectionProperty::IS_PUBLIC | ReflectionProperty::IS_PROTECTED | ReflectionProperty::IS_PRIVATE); $props = []; foreach ($reflectProps as $prop) { switch (true) { case $prop->isProtected(): $prefix = '*'; break; case $prop->isPrivate(): $prefix = $prop->getDeclaringClass()->getName(); break; default: $prefix = ''; break; } $prop->setAccessible(true); $props[$prefix . $prop->getName()] = $prop->getValue($phpfi); } var_dump($props); // array(3) { // ["a"]=> // string(10) "A PROPERTY" // ["*b"]=> // string(10) "B PROPERTY" // ["PHPFIc"]=> // string(10) "C PROPERTY" // }
Output for 8.5.1 - 8.5.3
array(3) { ["a"]=> string(10) "A PROPERTY" ["*b"]=> string(10) "B PROPERTY" ["PHPFIc"]=> string(10) "C PROPERTY" } Deprecated: Method ReflectionProperty::setAccessible() is deprecated since 8.5, as it has no effect since PHP 8.1 in /in/Dh3PO on line 38 Deprecated: Method ReflectionProperty::setAccessible() is deprecated since 8.5, as it has no effect since PHP 8.1 in /in/Dh3PO on line 38 Deprecated: Method ReflectionProperty::setAccessible() is deprecated since 8.5, as it has no effect since PHP 8.1 in /in/Dh3PO on line 38 array(3) { ["a"]=> string(10) "A PROPERTY" ["*b"]=> string(10) "B PROPERTY" ["PHPFIc"]=> string(10) "C PROPERTY" }
Output for 8.5.0
array(3) { ["a"]=> string(10) "A PROPERTY" ["*b"]=> string(10) "B PROPERTY" ["PHPFIc"]=> string(10) "C PROPERTY" } Deprecated: Method ReflectionProperty::setAccessible() is deprecated since 8.5, as it has no effect in /in/Dh3PO on line 38 Deprecated: Method ReflectionProperty::setAccessible() is deprecated since 8.5, as it has no effect in /in/Dh3PO on line 38 Deprecated: Method ReflectionProperty::setAccessible() is deprecated since 8.5, as it has no effect in /in/Dh3PO on line 38 array(3) { ["a"]=> string(10) "A PROPERTY" ["*b"]=> string(10) "B PROPERTY" ["PHPFIc"]=> string(10) "C PROPERTY" }
Output for 7.1.25 - 7.1.33, 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.34, 8.2.0 - 8.2.30, 8.3.0 - 8.3.30, 8.4.1 - 8.4.18
array(3) { ["a"]=> string(10) "A PROPERTY" ["*b"]=> string(10) "B PROPERTY" ["PHPFIc"]=> string(10) "C PROPERTY" } array(3) { ["a"]=> string(10) "A PROPERTY" ["*b"]=> string(10) "B PROPERTY" ["PHPFIc"]=> string(10) "C PROPERTY" }

preferences:
104.19 ms | 1575 KiB | 4 Q