W3cubDocs

/PHP

The ReflectionClassConstant class

Introduction

(PHP 7 >= 7.1.0)

The ReflectionClassConstant class reports information about a class constant.

Class synopsis

ReflectionClassConstant implements Reflector {
/* Properties */
public $name ;
public $class ;
/* Methods */
public __construct ( mixed $class , string $name )
public static export ( mixed $class , string $name [, bool $return ] ) : string
public getDeclaringClass ( ) : ReflectionClass
public getDocComment ( ) : string
public getModifiers ( ) : int
public getName ( ) : string
public getValue ( ) : mixed
public isPrivate ( ) : bool
public isProtected ( ) : bool
public isPublic ( ) : bool
public __toString ( ) : 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.

Table of Contents

© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/class.reflectionclassconstant.php