The ReflectionClassConstant class
(PHP 7 >= 7.1.0)
Introduction
The ReflectionClassConstant class reports
information about a class constant.
Class synopsis
ReflectionClassConstant
implements
Reflector
{
public __construct
(
object|string $class
,
string $constant
)
public static export
(
mixed $class
,
string $name
,
bool $return
= ?
) :
string
}
Properties
- 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.
Predefined Constants
ReflectionClassConstant Modifiers
ReflectionClassConstant::IS_PUBLIC
-
Indicates public
constants.
ReflectionClassConstant::IS_PROTECTED
-
Indicates protected
constants.
ReflectionClassConstant::IS_PRIVATE
-
Indicates private
constants.
Table of Contents
There are no user contributed notes for this page.