<?php declare(strict_types=1); class Bug { private static $foo; private static int $bar; } $rc = new ReflectionClass(Bug::class); var_dump($rc->getStaticPropertyValue('foo')); var_dump($v = $rc->getStaticPropertyValue('bar')); echo "bar = {$v}\n";
You have javascript disabled. You will not be able to edit any code.