虽然没有严格要求,推荐为每个注解创建一个实际的类。
在这个最简单的例子中,通过 use 语法从全局命名空间引入 #[Attribute]
注解所需要全空的类。
Example #1 目标限定使用的注解
<?php
namespace Example;
use Attribute;
#[Attribute]
class MyAttribute
{
}
要限制指定注解的声明类型,可为 #[Attribute]
注解第一个参数传入字节位掩码设置。
Example #2 简单的 Attribute 类
<?php
namespace Example;
use Attribute;
#[Attribute(Attribute::TARGET_METHOD | Attribute::TARGET_FUNCTION)]
class MyAttribute
{
}
在另一个类型中声明 MyAttribute 会在调用 ReflectionAttribute::newInstance() 时抛出异常。
注解在每个声明中默认情况下只能使用一次。
如果需要重复,可以在 #[Attribute]
声明中设置字节位掩码。
Example #3 使用 IS_REPEATABLE 允许注解在声明中出现多次
<?php
namespace Example;
use Attribute;
#[Attribute(Attribute::TARGET_METHOD | Attribute::TARGET_FUNCTION | Attribute::IS_REPEATABLE)]
class MyAttribute
{
}