Php/docs/class.reflectionclassconstant
来自菜鸟教程
(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 getDeclaringClass ( ) : ReflectionClass
public getDocComment ( ) : string
public getModifiers ( ) : int
public getName ( ) : string
public isPrivate ( ) : bool
public isProtected ( ) : bool
public isPublic ( ) : bool
public __toString ( ) : string
}
属性
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
- ReflectionClassConstant::__construct — Constructs a ReflectionClassConstant
- ReflectionClassConstant::export — Export
- ReflectionClassConstant::getDeclaringClass — Gets declaring class
- ReflectionClassConstant::getDocComment — Gets doc comments
- ReflectionClassConstant::getModifiers — Gets the class constant modifiers
- ReflectionClassConstant::getName — Get name of the constant
- ReflectionClassConstant::getValue — Gets value
- ReflectionClassConstant::isPrivate — Checks if class constant is private
- ReflectionClassConstant::isProtected — Checks if class constant is protected
- ReflectionClassConstant::isPublic — Checks if class constant is public
- ReflectionClassConstant::__toString — Returns the string representation of the ReflectionClassConstant object
/* 属性 */