PHP Velho Oeste 2024

The Attribute class

(PHP 8)

Introducción

Attributes offer the ability to add structured, machine-readable metadata information on declarations in code: Classes, methods, functions, parameters, properties and class constants can be the target of an attribute. The metadata defined by attributes can then be inspected at runtime using the Reflection APIs. Attributes could therefore be thought of as a configuration language embedded directly into code.

Sinopsis de la Clase

final class Attribute {
/* Constantes */
/* Propiedades */
public int $flags;
/* Métodos */
public __construct(int $flags = Attribute::TARGET_ALL)
}

Constantes predefinidas

Attribute::TARGET_CLASS

Attribute::TARGET_FUNCTION

Attribute::TARGET_METHOD

Attribute::TARGET_PROPERTY

Attribute::TARGET_CLASS_CONSTANT

Attribute::TARGET_PARAMETER

Attribute::TARGET_ALL

Attribute::IS_REPEATABLE

Propiedades

flags

Ver también

Attributes overview

Tabla de contenidos

add a note add a note

User Contributed Notes

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