The ReflectionAttribute class

(PHP 8)

Introduction

The ReflectionAttribute class provides information about an Attribute.

Class synopsis

classReflectionAttributeimplementsReflector {
publicconstintIS_INSTANCEOF;
private__construct()
publicgetName(): string
publicgetTarget(): int
publicisRepeated(): bool
}

Predefined Constants

ReflectionAttribute Flags

ReflectionAttribute::IS_INSTANCEOF

Retrieve attributes using an instanceof check.

Note:

The values of these constants may change between PHP versions. It is recommended to always use the constants and not rely on the values directly.

Table of Contents

To Top