The ReflectionObject class

(PHP 5, PHP 7, PHP 8)

Introduction

The ReflectionObject class reports information about an object.

Class synopsis

class ReflectionObject extends ReflectionClass {
/* Inherited constants */
public const int ReflectionClass::IS_FINAL;
/* Inherited properties */
public string $name;
/* Methods */
public __construct(object $object)
/* Inherited methods */
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
}

Changelog

Version Description
8.0.0 ReflectionObject::export() was removed.

Table of Contents

add a note

User Contributed Notes

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