(PHP 5, PHP 7, PHP 8)
ReflectionClass::getConstants — 获取常量
$filter
= null
): array从类中获取所有已定义的常量,而不管它们的可见性如何。
filter
可选过滤器,传入过滤所需的可见性常量。可用 ReflectionClassConstant 常量 进行配置,默认为所有可见性常量。
常量的数组,常量名是数组的键,常量的值是数组的值。
版本 | 说明 |
---|---|
8.0.0 |
添加 filter 。
|