在线文档教程
PHP
反射 | Reflection

ReflectionClassConstant (class)

The ReflectionClassConstant class

介绍

(PHP 7 >= 7.1.0)

ReflectionClassConstant类报告有关类固定信息。

类别简介

ReflectionClassConstant 实现反射器{

/* Properties */

public $name ;

public $class ;

/* Methods */

public __construct ( mixed $class , string $name )

public static string export ( mixed $class , string $name [, bool $return ] )

public ReflectionClass getDeclaringClass ( void )

public string getDocComment ( void )

public int getModifiers ( void )

public mixed getValue ( void )

public bool isPrivate ( void )

public bool isProtected ( void )

public bool isPublic ( void )

public string __toString ( void )

}

属性

name

类常量的名称。只读,在尝试写入时抛出 ReflectionException。

class

定义类常量的类的名称。只读,在尝试写入时抛出ReflectionException。

目录

  • ReflectionClassConstant::__construct — 构造一个ReflectionClassConstant

  • ReflectionClassConstant::export — Export

  • ReflectionClassConstant::getDeclaringClass — 获取声明类

  • ReflectionClassConstant::getDocComment — 获取文档评论

  • ReflectionClassConstant::getModifiers — 获取类常量修饰符

  • ReflectionClassConstant::getValue — 获取值

  • ReflectionClassConstant::isPrivate — 检查类常量是否为私有

  • ReflectionClassConstant::isProtected — 检查类常量是否受保护

  • ReflectionClassConstant::isPublic — 检查类常量是否为public

  • ReflectionClassConstant::__toString — 返回ReflectionClassConstant对象的字符串表示形式。

← ReflectionClass::__toString

ReflectionClassConstant::__construct →