(PHP 8)
ReflectionParameter::getAttributes — 获取属性
返回声明在此参数上的所有属性,作为一个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 )