PHP 8.5.0 Beta 1 available for testing

Voting

: max(seven, two)?
(Example: nine)

The Note You're Voting On

sandrenyl at gmail dot com
3 years ago
When using the method getAttributes() to fetch attributes based on a parent class, the proper flag constant is ReflectionAttribute::IS_INSTANCEOF (which equals 2 as mentionned by sergiolibe).

<?php
$reflectionClass
->getAttributes(SomeParentAttribute::class, ReflectionAttribute::IS_INSTANCEOF);
?>

<< Back to user notes page

To Top