PHP ReflectionClassConstant::__construct 反射函数

  • 定义和用法

    ReflectionClassConstant::__construct - 构造一个 ReflectionClassConstant
  • 版本支持

    PHP4 PHP5 PHP7
    不支持 不支持 v7.1.0+支持
  • 语法

    ReflectionClassConstant::__construct( mixed $class , string $name )
    ReflectionClassConstant::__construct() 构造一个新的 ReflectionClassConstant 对象.
  • 参数

    参数 必需的 描述
    class 包含要反映的类名称的字符串或对象。
    name 类常量的名称。
  • 返回值

    返回构造的 ReflectionClassConstant 实例。
    如果给定的类常量不存在,则引发Exception。
  • 示例

    class Test{
            const a = 'test';
    }
    
    $reflectionClassConstant = new  ReflectionClassConstant('Test','a');
    
    $value  = $reflectionClassConstant->getValue();
    var_dump($value);
    
    尝试一下
  • 相关页面