ReflectionObject クラス

(PHP 5, PHP 7, PHP 8)

はじめに

ReflectionObject クラスは オブジェクトについての情報を報告します。

クラス概要

class ReflectionObject extends ReflectionClass {
/* 継承した定数 */
/* 継承したプロパティ */
public string $name;
/* メソッド */
public __construct(object $object)
/* 継承したメソッド */
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
}

目次

関連キーワード:  ReflectionClass, public, string, ReflectionObject, array, int, クラス, filter, construct, 継承