PHP ReflectionClass::getReflectionConstant 反射函数

  • 定义和用法

    ReflectionClass::getReflectionConstant - 获取一个类的常量的ReflectionClassConstant
  • 版本支持

    PHP4 PHP5 PHP7
    不支持 不支持 7.1.0+支持
  • 语法

    ReflectionClass::getReflectionConstant( string $name )
    ReflectionClass::getReflectionConstant() 获取类的属性的ReflectionClassConstant。
  • 参数

    参数 必需的 描述
    name 常量名
  • 返回值

    一个 ReflectionClassConstant 对象。
  • 示例

    class Foo {
            const a = 1;
            const b = 1;
            const c = 1;
            const d = 1;
    }
    
    $foo = new Foo();
    
    $reflect = new ReflectionClass($foo);
    $const   = $reflect->getReflectionConstant('a');
    
    var_dump($const);
    
    尝试一下
  • 相关页面

    ReflectionClass::getReflectionConstants() - 获取一组类常量。