3v4l.org

run code in 500+ PHP versions simultaneously
<?php #[AttributeStub()] /** * @template T */ class ClassStub { /** * @param T $var */ public function __construct(public $var) {} } $ref = new \ReflectionClass(ClassStub::class); foreach ($ref->getAttributes() as $attr) { var_dump($attr->getName()); } var_dump($ref->getDocComment());
Output for 8.0.0 - 8.0.2, 8.1.23 - 8.1.34, 8.2.10 - 8.2.32, 8.3.0 - 8.3.33, 8.4.1 - 8.4.24, 8.5.0 - 8.5.9
string(13) "AttributeStub" string(22) "/** * @template T */"
Output for 7.3.0 - 7.3.27, 7.4.0 - 7.4.15
Parse error: syntax error, unexpected 'public' (T_PUBLIC), expecting variable (T_VARIABLE) in /in/Pe17n on line 12
Process exited with code 255.

preferences:
85.91 ms | 1093 KiB | 4 Q