The ReflectionAttribute class

(PHP 8)

Introduzione

The ReflectionAttribute class provides information about an Attribute.

Sommario della classe

class ReflectionAttribute implements Reflector {
/* Costanti */
public const int IS_INSTANCEOF;
/* Proprietà */
public string $name;
/* Metodi */
private __construct()
public getName(): string
public getTarget(): int
public isRepeated(): bool
}

Proprietà

name
The name of the attribute.

Costanti predefinite

ReflectionAttribute Flags

ReflectionAttribute::IS_INSTANCEOF int

Retrieve attributes using an instanceof check.

Nota:

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.

Log delle modifiche

Versione Descrizione
8.4.0 All class constants are now typed.
8.4.0 Added ReflectionAttribute::$name.

Indice dei contenuti

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top