PHP Conference Japan 2024

ReflectionAttribute 类

(PHP 8)

简介

ReflectionAttribute 类提供有关属性的信息。

类概要

class ReflectionAttribute implements Reflector {
/* 常量 */
public const int IS_INSTANCEOF;
/* 属性 */
public string $name;
/* 方法 */
private __construct()
public getName(): string
public getTarget(): int
public isRepeated(): bool
}

属性

name
属性的名称。

预定义常量

ReflectionAttribute 标志

ReflectionAttribute::IS_INSTANCEOF int

使用 instanceof 检查检索属性。

注意:

这些常量的值可能会在不同的PHP版本之间发生变化。建议始终使用常量,而不是直接依赖其值。

变更日志

版本 描述
8.4.0 所有类常量现在都已类型化。
8.4.0 添加了 ReflectionAttribute::$name

目录

添加注释

用户贡献注释

此页面没有用户贡献的注释。
To Top