PHP Conference Japan 2024

ReflectionConstant 类

(PHP 8 >= 8.4.0)

简介

ReflectionConstant 类报告关于全局常量的信息。

类概要

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
常量的名称。只读,尝试写入时会抛出 ReflectionException 异常。

目录

添加备注

用户贡献的注释

此页面没有用户贡献的注释。
To Top