PHP ReflectionClass::getConstant 反射函数

  • 定义和用法

    ReflectionClass::getConstant - 获取定义过的一个常量
  • 版本支持

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

    ReflectionClass::getConstant( string $name )
    ReflectionClass::getConstant() 获取定义过的一个常量。
  • 参数

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

    常量的值。
  • 示例

     class Test{
            const ONE = "Number one";
            const TWO = "Number two";
        }
       
        $obj = new ReflectionClass( "Test" );
        echo $obj->getconstant( "ONE" )."\n";
        echo $obj->getconstant( "TWO" )."\n";
    
    尝试一下
  • 相关页面

    ReflectionClass::getConstants() - 获取一组常量