PHP Conference Japan 2024

ReflectionParameter::getAttributes

(PHP 8)

ReflectionParameter::getAttributes获取属性

描述

public ReflectionParameter::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 {
}

function
fruitBasket(
#[
Fruit]
#[
Red]
string $apple
) { }

$reflection = new ReflectionFunction('fruitBasket');
$parameter = $reflection->getParameter('apple');
$attributes = $parameter->getAttributes();
print_r(array_map(fn($attribute) => $attribute->getName(), $attributes));
?>

以上示例将输出

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

示例 #2 按类名过滤结果

<?php
#[Attribute]
class
Fruit {
}

#[
Attribute]
class
Red {
}

function
fruitBasket(
#[
Fruit]
#[
Red]
string $apple
) { }

$reflection = new ReflectionFunction('fruitBasket');
$parameter = $reflection->getParameter('apple');
$attributes = $parameter->getAttributes('Fruit');
print_r(array_map(fn($attribute) => $attribute->getName(), $attributes));
?>

以上示例将输出

Array
(
    [0] => Fruit
)

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

<?php
interface Color {
}

#[
Attribute]
class
Fruit {
}

function
fruitBasket(
#[
Fruit]
#[
Red]
string $apple
) { }

$reflection = new ReflectionFunction('fruitBasket');
$parameter = $reflection->getParameter('apple');
$attributes = $parameter->getAttributes('Color', ReflectionAttribute::IS_INSTANCEOF);
print_r(array_map(fn($attribute) => $attribute->getName(), $attributes));
?>

以上示例将输出

Array
(
    [0] => Red
)

添加注释

用户贡献的注释

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