PHP 8.4.3 Released!

The ReflectionConstant class

(PHP 8 >= 8.4.0)

简介

The ReflectionConstant class reports information about a global constant.

类摘要

final class ReflectionConstant implements Reflector {
/* 属性 */
public string $name;
/* 方法 */
public __construct(string $name)
public getName(): string
public getValue(): mixed
public isDeprecated(): bool
public __toString(): string
}

属性

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

目录

添加备注

用户贡献的备注

此页面尚无用户贡献的备注。
To Top