PHP Conference Japan 2024

ReflectionClass::getReflectionConstants

(PHP 7 >= 7.1.0, PHP 8)

ReflectionClass::getReflectionConstants获取类常量

描述

public ReflectionClass::getReflectionConstants(?int $filter = null): array

检索反射常量。

参数

filter

可选过滤器,用于过滤所需的常量可见性。它使用ReflectionClassConstant 常量配置,默认为所有常量可见性。

返回值

一个 ReflectionClassConstant 对象数组。

变更日志

版本 描述
8.0.0 filter 已添加。

示例

示例 #1 基本 ReflectionClass::getReflectionConstants() 示例

<?php
class Foo {
public const
FOO = 1;
protected const
BAR = 2;
private const
BAZ = 3;
}

$foo = new Foo();

$reflect = new ReflectionClass($foo);
$consts = $reflect->getReflectionConstants();

foreach (
$consts as $const) {
print
$const->getName() . "\n";
}

var_dump($consts);

?>

以上示例将输出类似以下内容

FOO
BAR
BAZ
array(3) {
  [0]=>
  object(ReflectionClassConstant)#3 (2) {
    ["name"]=>
    string(3) "FOO"
    ["class"]=>
    string(3) "Foo"
  }
  [1]=>
  object(ReflectionClassConstant)#4 (2) {
    ["name"]=>
    string(3) "BAR"
    ["class"]=>
    string(3) "Foo"
  }
  [2]=>
  object(ReflectionClassConstant)#5 (2) {
    ["name"]=>
    string(3) "BAZ"
    ["class"]=>
    string(3) "Foo"
  }
}

参见

添加备注

用户贡献的笔记

此页面没有用户贡献的笔记。
To Top