Reflection
PHP Manual

The ReflectionClassConstant class

(PHP 7 >= 7.1.0)

Введение

The ReflectionClassConstant class reports information about a class constant.

Обзор классов

ReflectionClassConstant implements Reflector {
/* Свойства */
public $name ;
public $class ;
/* Методы */
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

Name of the class constant. Read-only, throws ReflectionException in attempt to write.

class

Name of the class where the class constant is defined. Read-only, throws ReflectionException in attempt to write.

Содержание


Reflection
PHP Manual