The ReflectionClassConstant class

(PHP 7 >= 7.1.0)

Introducere

The ReflectionClassConstant class reports information about a class constant.

Sinopsisul clasei

ReflectionClassConstant implements Reflector {
/* Constante */
const int IS_PUBLIC ;
const int IS_PROTECTED ;
const int IS_PRIVATE ;
/* Proprietăți */
public $name ;
public $class ;
/* Metode */
public __construct ( object|string $class , string $constant )
public static export ( mixed $class , string $name [, bool $return ] ) : string
public getDocComment ( ) : string|false
public getModifiers ( ) : int
public getName ( ) : string|false
public getValue ( ) : mixed
public isPrivate ( ) : bool
public isProtected ( ) : bool
public isPublic ( ) : bool
public __toString ( ) : string
}

Proprietăți

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.

Constante predefinite

ReflectionClassConstant Modifiers

ReflectionClassConstant::IS_PUBLIC

Indicates public constants.

ReflectionClassConstant::IS_PROTECTED

Indicates protected constants.

ReflectionClassConstant::IS_PRIVATE

Indicates private constants.

Cuprins

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top