ReflectionEnum 类

(PHP 8 >= 8.1.0)

简介

ReflectionEnum 类报告有关 Enum 的信息。

类摘要

class ReflectionEnum extends ReflectionClass {
/* 继承的常量 */
public const int ReflectionClass::IS_FINAL;
/* 继承的属性 */
public string $name;
/* 方法 */
public __construct(object|string $objectOrClass)
public getCase(string $name): ReflectionEnumUnitCase
public getCases(): array
public hasCase(string $name): bool
public isBacked(): bool
/* 继承的方法 */
public static ReflectionClass::export(mixed $argument, bool $return = false): string
public ReflectionClass::getAttributes(?string $name = null, int $flags = 0): array
public ReflectionClass::getConstant(string $name): mixed
public ReflectionClass::getConstants(?int $filter = null): array
public ReflectionClass::getDocComment(): string|false
public ReflectionClass::getEndLine(): int|false
public ReflectionClass::getExtensionName(): string|false
public ReflectionClass::getFileName(): string|false
public ReflectionClass::getMethods(?int $filter = null): array
public ReflectionClass::getName(): string
public ReflectionClass::getProperties(?int $filter = null): array
public ReflectionClass::getReflectionConstants(?int $filter = null): array
public ReflectionClass::getStartLine(): int|false
public ReflectionClass::getStaticPropertyValue(string $name, mixed &$def_value = ?): mixed
public ReflectionClass::hasConstant(string $name): bool
public ReflectionClass::hasMethod(string $name): bool
public ReflectionClass::hasProperty(string $name): bool
public ReflectionClass::isInstance(object $object): bool
public ReflectionClass::newInstance(mixed ...$args): object
public ReflectionClass::newInstanceArgs(array $args = []): ?object
public ReflectionClass::setStaticPropertyValue(string $name, mixed $value): void
}

参见

目录

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top