<?php #[Attribute] class Test {} class Foo { #[Test] public $bar, $baz; } foreach ((new ReflectionClass(Foo::class))->getProperties() as $prop) { var_dump($prop->getAttributes()[0]->newInstance()); }
You have javascript disabled. You will not be able to edit any code.