ReflectionClassConstant::getAttributes

(PHP 8)

ReflectionClassConstant::getAttributes获取属性

描述

public ReflectionClassConstant::getAttributes(?string $name = null, int $flags = 0): array

将此类常量上声明的所有属性作为 ReflectionAttribute 数组返回。

参数

name

过滤结果以仅包括与该类名匹配的属性的 ReflectionAttribute 实例。

flags

用于确定如何过滤结果的标志,如果提供了 name

默认值为 0,它只返回类 name 的属性的结果。

唯一其他可用的选项是使用 ReflectionAttribute::IS_INSTANCEOF,它将改为使用 instanceof 进行过滤。

返回值

属性数组,作为 ReflectionAttribute 对象。

示例

示例 #1 基本用法

<?php
#[Attribute]
class
Fruit {
}

#[
Attribute]
class
Red {
}

class
Basket {
#[
Fruit]
#[
Red]
public const
APPLE = 'apple';
}

$classConstant = new ReflectionClassConstant('Basket', 'APPLE');
$attributes = $classConstant->getAttributes();
print_r(array_map(fn($attribute) => $attribute->getName(), $attributes));
?>

上面的示例将输出

Array
(
    [0] => Fruit
    [1] => Red
)

示例 #2 按类名过滤结果

<?php
#[Attribute]
class
Fruit {
}

#[
Attribute]
class
Red {
}

class
Basket {
#[
Fruit]
#[
Red]
public const
APPLE = 'apple';
}

$classConstant = new ReflectionClassConstant('Basket', 'APPLE');
$attributes = $classConstant->getAttributes('Fruit');
print_r(array_map(fn($attribute) => $attribute->getName(), $attributes));
?>

上面的示例将输出

Array
(
    [0] => Fruit
)

示例 #3 按类名过滤结果,包含继承

<?php
interface Color {
}

#[
Attribute]
class
Fruit {
}

#[
Attribute]
class
Red implements Color {
}

class
Basket {
#[
Fruit]
#[
Red]
public const
APPLE = 'apple';
}

$classConstant = new ReflectionClassConstant('Basket', 'APPLE');
$attributes = $classConstant->getAttributes('Color', ReflectionAttribute::IS_INSTANCEOF);
print_r(array_map(fn($attribute) => $attribute->getName(), $attributes));
?>

上面的示例将输出

Array
(
    [0] => Red
)

添加注释

用户贡献的注释

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